Files
hereconnect/apps/frontend/src/themes/PrimeVueHereConnectPreset.ts
T
ti ab86a3b8e1
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Successful in 1m17s
Deploy db-migrations / db-migrations (push) Successful in 38s
Deploy app frontend / app frontend (push) Successful in 2m14s
support dark theme closes #25
2024-12-08 11:06:31 +02:00

46 lines
1.1 KiB
TypeScript

import { definePreset } from '@primevue/themes'
import Aura from '@primevue/themes/aura'
export const PrimeVueHereConnectPreset = definePreset(Aura, {
semantic: {
colorScheme: {
light: {
primary: {
50: '{rose.50}',
100: '{rose.100}',
200: '{rose.200}',
300: '{rose.300}',
400: '{rose.400}',
500: '{rose.500}',
600: '{rose.600}',
700: '{rose.700}',
800: '{rose.800}',
900: '{rose.900}',
950: '{rose.950}',
},
highlight: {
background: '{rose.100}',
focusBackground: '{rose.200}',
color: '#000000',
focusColor: '#000000',
},
},
dark: {
primary: {
50: '{orange.50}',
100: '{orange.100}',
200: '{orange.200}',
300: '{orange.300}',
400: '{orange.400}',
500: '{orange.500}',
600: '{orange.600}',
700: '{yellow.700}',
800: '{orange.800}',
900: '{orange.900}',
950: '{orange.950}',
},
},
},
},
})