| | import { IThemeRGB } from '../types'; |
| |
|
| | |
| | |
| | |
| | |
| | export const defaultTheme: IThemeRGB = { |
| | |
| | 'rgb-text-primary': '33 33 33', |
| | 'rgb-text-secondary': '66 66 66', |
| | 'rgb-text-secondary-alt': '89 89 89', |
| | 'rgb-text-tertiary': '89 89 89', |
| | 'rgb-text-warning': '245 158 11', |
| |
|
| | |
| | 'rgb-ring-primary': '89 89 89', |
| |
|
| | |
| | 'rgb-header-primary': '255 255 255', |
| | 'rgb-header-hover': '247 247 248', |
| | 'rgb-header-button-hover': '247 247 248', |
| |
|
| | |
| | 'rgb-surface-active': '236 236 236', |
| | 'rgb-surface-active-alt': '227 227 227', |
| | 'rgb-surface-hover': '227 227 227', |
| | 'rgb-surface-hover-alt': '205 205 205', |
| | 'rgb-surface-primary': '255 255 255', |
| | 'rgb-surface-primary-alt': '247 247 248', |
| | 'rgb-surface-primary-contrast': '236 236 236', |
| | 'rgb-surface-secondary': '247 247 248', |
| | 'rgb-surface-secondary-alt': '227 227 227', |
| | 'rgb-surface-tertiary': '236 236 236', |
| | 'rgb-surface-tertiary-alt': '255 255 255', |
| | 'rgb-surface-dialog': '255 255 255', |
| | 'rgb-surface-submit': '4 120 87', |
| | 'rgb-surface-submit-hover': '6 95 70', |
| | 'rgb-surface-destructive': '185 28 28', |
| | 'rgb-surface-destructive-hover': '153 27 27', |
| | 'rgb-surface-chat': '255 255 255', |
| |
|
| | |
| | 'rgb-border-light': '227 227 227', |
| | 'rgb-border-medium': '205 205 205', |
| | 'rgb-border-medium-alt': '205 205 205', |
| | 'rgb-border-heavy': '153 150 150', |
| | 'rgb-border-xheavy': '89 89 89', |
| |
|
| | |
| | 'rgb-brand-purple': '171 104 255', |
| |
|
| | |
| | 'rgb-presentation': '255 255 255', |
| |
|
| | |
| | 'rgb-background': '255 255 255', |
| | 'rgb-foreground': '17 17 17', |
| | 'rgb-primary': '235 235 235', |
| | 'rgb-primary-foreground': '0 0 0', |
| | 'rgb-secondary': '247 247 248', |
| | 'rgb-secondary-foreground': '66 66 66', |
| | 'rgb-muted': '250 250 250', |
| | 'rgb-muted-foreground': '120 120 120', |
| | 'rgb-accent': '245 245 245', |
| | 'rgb-accent-foreground': '17 17 17', |
| | 'rgb-destructive-foreground': '17 17 17', |
| | 'rgb-border': '215 215 215', |
| | 'rgb-input': '230 230 230', |
| | 'rgb-ring': '180 180 180', |
| | 'rgb-card': '247 247 248', |
| | 'rgb-card-foreground': '17 17 17', |
| | }; |
| |
|