forked from CodingCatDev/codingcat.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.ts
More file actions
94 lines (93 loc) · 3.46 KB
/
theme.ts
File metadata and controls
94 lines (93 loc) · 3.46 KB
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
94
import type { CustomThemeConfig } from '@skeletonlabs/tw-plugin';
export const codingCatDevTheme: CustomThemeConfig = {
name: 'codingcatdev',
properties: {
'--theme-font-family-base': "'Nunito', sans-serif",
'--theme-font-family-heading': "'Nunito', sans-serif",
'--theme-font-color-base': 'var(--color-surface-900)',
'--theme-font-color-dark': 'var(--color-tertiary-50)',
'--theme-rounded-base': '12px',
'--theme-rounded-container': '8px',
'--theme-border-base': '3px',
'--on-primary': '255 255 255',
'--on-secondary': '0 0 0',
'--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': '252 228 240',
'--color-primary-100': '251 218 235',
'--color-primary-200': '250 209 230',
'--color-primary-300': '247 182 214',
'--color-primary-400': '242 127 184',
'--color-primary-500': '236 72 153',
'--color-primary-600': '212 65 138',
'--color-primary-700': '177 54 115',
'--color-primary-800': '142 43 92',
'--color-primary-900': '116 35 75',
'--color-secondary-50': '218 244 249',
'--color-secondary-100': '205 240 246',
'--color-secondary-200': '193 237 244',
'--color-secondary-300': '155 226 238',
'--color-secondary-400': '81 204 225',
'--color-secondary-500': '6 182 212',
'--color-secondary-600': '5 164 191',
'--color-secondary-700': '5 137 159',
'--color-secondary-800': '4 109 127',
'--color-secondary-900': '3 89 104',
'--color-tertiary-50': '220 244 242',
'--color-tertiary-100': '208 241 237',
'--color-tertiary-200': '196 237 233',
'--color-tertiary-300': '161 227 219',
'--color-tertiary-400': '91 205 193',
'--color-tertiary-500': '20 184 166',
'--color-tertiary-600': '18 166 149',
'--color-tertiary-700': '15 138 125',
'--color-tertiary-800': '12 110 100',
'--color-tertiary-900': '10 90 81',
'--color-success-50': '237 247 220',
'--color-success-100': '230 245 208',
'--color-success-200': '224 242 197',
'--color-success-300': '206 235 162',
'--color-success-400': '169 219 92',
'--color-success-500': '132 204 22',
'--color-success-600': '119 184 20',
'--color-success-700': '99 153 17',
'--color-success-800': '79 122 13',
'--color-success-900': '65 100 11',
'--color-warning-50': '252 244 218',
'--color-warning-100': '251 240 206',
'--color-warning-200': '250 236 193',
'--color-warning-300': '247 225 156',
'--color-warning-400': '240 202 82',
'--color-warning-500': '234 179 8',
'--color-warning-600': '211 161 7',
'--color-warning-700': '176 134 6',
'--color-warning-800': '140 107 5',
'--color-warning-900': '115 88 4',
'--color-error-50': '253 227 227',
'--color-error-100': '252 218 218',
'--color-error-200': '251 208 208',
'--color-error-300': '249 180 180',
'--color-error-400': '244 124 124',
'--color-error-500': '239 68 68',
'--color-error-600': '215 61 61',
'--color-error-700': '179 51 51',
'--color-error-800': '143 41 41',
'--color-error-900': '117 33 33',
'--color-surface-50': '229 224 242',
'--color-surface-100': '220 213 238',
'--color-surface-200': '212 203 233',
'--color-surface-300': '185 171 220',
'--color-surface-400': '133 108 194',
'--color-surface-500': '81 45 168',
'--color-surface-600': '73 41 151',
'--color-surface-700': '61 34 126',
'--color-surface-800': '49 27 101',
'--color-surface-900': '40 22 82'
}
// properties_dark: {
// Optionally provide dark mode overrides for your CSS custom properties here
// }
};