Set noir as default

pull/5701/head
Cagatay Civici 2024-05-03 10:39:30 +03:00
parent 5ed1bf98ac
commit 8dc4eecb5d
1 changed files with 22 additions and 22 deletions

View File

@ -4,39 +4,39 @@ import Aura from 'primevue/themes/aura';
const Noir = definePreset(Aura, { const Noir = definePreset(Aura, {
semantic: { semantic: {
primary: { primary: {
50: '{emerald.50}', 50: '{zinc.50}',
100: '{emerald.100}', 100: '{zinc.100}',
200: '{emerald.200}', 200: '{zinc.200}',
300: '{emerald.300}', 300: '{zinc.300}',
400: '{emerald.400}', 400: '{zinc.400}',
500: '{emerald.500}', 500: '{zinc.500}',
600: '{emerald.600}', 600: '{zinc.600}',
700: '{emerald.700}', 700: '{zinc.700}',
800: '{emerald.800}', 800: '{zinc.800}',
900: '{emerald.900}', 900: '{zinc.900}',
950: '{emerald.950}' 950: '{zinc.950}'
} /*, },
colorScheme: { colorScheme: {
light: { light: {
primary: { primary: {
color: '#09090b', color: '{zinc.950}',
inverseColor: '#ffffff', inverseColor: '#ffffff',
hoverColor: '#18181b', hoverColor: '{zinc.900}',
activeColor: '#27272a' activeColor: '{zinc.800}'
}, },
highlight: { highlight: {
background: '#09090b', background: '{zinc.950}',
focusBackground: '#3f3f46', focusBackground: '{zinc.700}',
color: '#ffffff', color: '#ffffff',
focusColor: '#ffffff' focusColor: '#ffffff'
} }
}, },
dark: { dark: {
primary: { primary: {
color: '#fafafa', color: '{zinc.50}',
inverseColor: '#09090b', inverseColor: '{zinc.950}',
hoverColor: '#f4f4f5', hoverColor: '{zinc.100}',
activeColor: '#e4e4e7' activeColor: '{zinc.200}'
}, },
highlight: { highlight: {
background: 'rgba(250, 250, 250, .16)', background: 'rgba(250, 250, 250, .16)',
@ -45,7 +45,7 @@ const Noir = definePreset(Aura, {
focusColor: 'rgba(255,255,255,.87)' focusColor: 'rgba(255,255,255,.87)'
} }
} }
}*/ }
} }
}); });