-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.ts
93 lines (92 loc) · 3.66 KB
/
theme.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import type { CustomThemeConfig } from '@skeletonlabs/tw-plugin';
export const discreetlyTheme: CustomThemeConfig = {
name: 'discreetly-theme',
properties: {
'--theme-font-family-base':
"'Space Grotesk', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'",
'--theme-font-family-heading':
'\'Nippo\', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
'--theme-font-color-base': 'var(--color-surface-900)',
'--theme-font-color-dark': 'var(--color-surface-50)',
'--theme-rounded-base': '4px',
'--theme-rounded-container': '6px',
'--theme-border-base': '1px',
'--on-primary': '0 0 0',
'--on-secondary': '255 255 255',
'--on-tertiary': '0 0 0',
'--on-success': '0 0 0',
'--on-warning': '0 0 0',
'--on-error': '255 255 255',
'--on-surface': '255 255 255',
'--color-primary-50': '254 231 231',
'--color-primary-100': '254 223 223',
'--color-primary-200': '254 215 215',
'--color-primary-300': '253 191 191',
'--color-primary-400': '252 143 143',
'--color-primary-500': '250 95 95',
'--color-primary-600': '225 86 86',
'--color-primary-700': '188 71 71',
'--color-primary-800': '150 57 57',
'--color-primary-900': '123 47 47',
'--color-secondary-50': '240 244 244',
'--color-secondary-100': '235 240 241',
'--color-secondary-200': '230 237 237',
'--color-secondary-300': '214 225 227',
'--color-secondary-400': '184 203 205',
'--color-secondary-500': '153 181 184',
'--color-secondary-600': '138 163 166',
'--color-secondary-700': '115 136 138',
'--color-secondary-800': '92 109 110',
'--color-secondary-900': '75 89 90',
'--color-tertiary-50': '220 237 239',
'--color-tertiary-100': '208 231 233',
'--color-tertiary-200': '197 226 228',
'--color-tertiary-300': '161 208 212',
'--color-tertiary-400': '91 172 179',
'--color-tertiary-500': '21 137 147',
'--color-tertiary-600': '19 123 132',
'--color-tertiary-700': '16 103 110',
'--color-tertiary-800': '13 82 88',
'--color-tertiary-900': '10 67 72',
'--color-success-50': '227 241 232',
'--color-success-100': '218 236 224',
'--color-success-200': '209 232 216',
'--color-success-300': '181 217 193',
'--color-success-400': '125 189 147',
'--color-success-500': '69 161 100',
'--color-success-600': '62 145 90',
'--color-success-700': '52 121 75',
'--color-success-800': '41 97 60',
'--color-success-900': '34 79 49',
'--color-warning-50': '248 244 231',
'--color-warning-100': '246 240 222',
'--color-warning-200': '244 236 214',
'--color-warning-300': '237 225 190',
'--color-warning-400': '224 203 141',
'--color-warning-500': '210 180 92',
'--color-warning-600': '189 162 83',
'--color-warning-700': '158 135 69',
'--color-warning-800': '126 108 55',
'--color-warning-900': '103 88 45',
'--color-error-50': '254 231 231',
'--color-error-100': '254 223 223',
'--color-error-200': '254 215 215',
'--color-error-300': '253 191 191',
'--color-error-400': '252 143 143',
'--color-error-500': '250 95 95',
'--color-error-600': '225 86 86',
'--color-error-700': '188 71 71',
'--color-error-800': '150 57 57',
'--color-error-900': '123 47 47',
'--color-surface-50': '223 225 225',
'--color-surface-100': '213 214 214',
'--color-surface-200': '202 204 204',
'--color-surface-300': '171 174 174',
'--color-surface-400': '107 113 113',
'--color-surface-500': '44 52 52',
'--color-surface-600': '40 47 47',
'--color-surface-700': '33 39 39',
'--color-surface-800': '26 31 31',
'--color-surface-900': '22 25 25'
}
};