-
Notifications
You must be signed in to change notification settings - Fork 20
/
tailwind.config.ts
80 lines (79 loc) · 2.1 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
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
import { fontFamily } from 'tailwindcss/defaultTheme';
import type { Config } from 'tailwindcss/types/config';
import { themeVariables } from './src/frontend/src/lib/styles/tailwind/theme-variables';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
fontFamily: {
sans: ['CircularXX', 'sans-serif', ...fontFamily.sans]
},
colors: {
inherit: 'inherit',
transparent: 'transparent',
current: 'currentColor',
black: 'rgb(0, 0, 0)',
'black-rgb': '0, 0, 0',
white: 'rgb(255 255 255)',
'white-rgb': '255, 255, 255',
'ghost-white': '#f8f9fa',
'off-white': '#fcfaf6',
dust: '#dbd9d6',
grey: '#c0bbc4',
// TODO: add the new gray colors as theme-variables
'bright-gray': '#e9ecef',
'blue-ribbon-rgb': '0, 102, 255',
'blue-ribbon': '#0066ff',
'info-blue': '#0BA5EC',
'dark-blue': '#321469',
'absolute-blue': '#004eb5',
'interdimensional-blue': '#3b00b9',
'united-nations-blue': '#627eea',
'pale-cornflower-blue': '#b0cdff',
'brilliant-azure': '#348afd',
'misty-rose': '#937993',
'chinese-purple': '#7014a4',
goldenrod: '#dfa81b',
cyclamen: '#ea6c99',
'bright-lilac': '#e18dff',
'green-crayola': '#16b364',
'british-racing-green': '#084c2e',
'dartmouth-green': '#087443',
'rusty-red': '#dc3545',
'chocolate-cosmos': '#520c13',
'upsdell-red': '#a71d2a',
'alice-blue': '#ecf3fb',
'crayola-yellow': '#ffe57f',
cornsilk: '#fff7d8',
cobalt: '#004abe',
zumthor: '#e8f1ff',
beer: '#f7931a',
fulvous: '#de7900'
},
extend: {
backgroundColor: themeVariables.background,
gradientColorStops: themeVariables.background,
borderColor: themeVariables.border,
ringColor: themeVariables.border,
textColor: themeVariables.foreground,
backgroundSize: {
'size-200': '200% 200%'
},
backgroundPosition: {
'pos-0': '0% 0%',
'pos-100': '100% 100%'
},
width: {
sm: '576px',
md: '768px'
},
screens: {
'1.5md': '896px',
'1.5lg': '1152px',
'1.5xl': '1408px',
'2.5xl': '1728px',
'h-md': { raw: '(max-height: 1090px)' }
}
}
},
plugins: []
} satisfies Config;