forked from solidjs/solid-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
47 lines (46 loc) · 1.17 KB
/
tailwind.config.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
import theme from 'windicss/defaultTheme';
export default {
extract: {
include: ['./src/**/*.{tsx,ts,css}', './playground/**/*.{tsx,ts,css}', './index.html'],
},
theme: {
extend: {
colors: {
brand: {
default: '#2c4f7c',
dark: '#335d92',
medium: '#446b9e',
light: '#4f88c6',
},
solid: {
default: '#2c4f7c',
darkbg: '#222222',
darkLighterBg: '#444444',
darkdefault: '#b8d7ff', //'#87b1e6',
darkgray: '#252525',
gray: '#414042',
mediumgray: '#9d9d9d',
lightgray: '#f3f5f7',
dark: '#07254A',
medium: '#446b9e',
light: '#4f88c6',
accent: '#0cdc73',
secondaccent: '#0dfc85',
},
other: '#1e1e1e',
},
fontFamily: {
// This font doesn't render properly, it seems it has a line-height issue
sans: ['Gordita', ...theme.fontFamily.sans],
},
fontSize: {
'0.5sm': ['0.84375rem', '1.25rem'],
},
cursor: {
'col-resize': 'col-resize',
'row-resize': 'row-resize',
},
},
},
darkMode: 'class',
};