mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Init theme structure
This commit is contained in:
parent
f7228f16e0
commit
8e4854474d
26 changed files with 649 additions and 17 deletions
33
components/lib/theme/lara/index.js
Normal file
33
components/lib/theme/lara/index.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
import { palette } from 'primevue/theme';
|
||||
import global from 'primevue/theme/lara/global';
|
||||
import panel from 'primevue/theme/lara/panel';
|
||||
|
||||
export default {
|
||||
primitive: {
|
||||
blue: palette('#3B82F6') /* --p-blue-[50-900] */,
|
||||
gray: {
|
||||
50: '#f9fafb',
|
||||
100: '#f3f4f6',
|
||||
200: '#e5e7eb',
|
||||
300: '#d1d5db',
|
||||
400: '#9ca3af',
|
||||
500: '#6b7280',
|
||||
600: '#4b5563',
|
||||
700: '#374151',
|
||||
800: '#1f2937',
|
||||
900: '#111827'
|
||||
}
|
||||
},
|
||||
semantic: {
|
||||
primary: {
|
||||
500: 'var(--p-blue-500)'
|
||||
},
|
||||
surface: {
|
||||
200: 'var(--p-gray-200)'
|
||||
}
|
||||
},
|
||||
components: {
|
||||
global,
|
||||
panel
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue