@specialdoom/solid-rev-kit
Version:
RevKit UI implementation for SolidJS
37 lines (35 loc) • 641 B
text/typescript
export type Colors = {
accent: string
warning: string
success: string
error: string
primary: string
secondary: string
muted: string
bright: string
shade: string
tint: string
dark: string
strawberry: string
blueberry: string
}
export type Theme = {
colors: Colors
}
export const theme: Theme = {
colors: {
accent: '#0880AE',
warning: '#F2AC57',
success: '#14A38B',
error: '#FF7171',
primary: '#2C2738',
secondary: '#756F86',
muted: '#7C9CBF',
bright: '#FFFFFF',
shade: '#DBE2EA',
tint: '#EBF4F8',
dark: '#2C2738',
strawberry: '#FF5689',
blueberry: '#6F96FF'
}
};