-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
48 lines (42 loc) · 921 Bytes
/
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
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
colors: {
ecOrange: '#e74b3e',
ecOrangeHighlight: '#ff887d',
ecIconColor: '#f0f0f0',
bulletColor: '#818589',
cardBg: '#f1f5f9',
pillBg: '#e1e5e9',
},
extend: {
height: {
'200': '200px'
},
maxHeight: {
'200': '200px'
},
maxWidth: {
'32r': '32rem',
'200': '200px',
'640': '640px',
'680': '680px'
},
width: {
'32r': '32rem',
'200': '200px',
'550': '550px',
'640': '640px',
'680': '680px',
'oppo550': 'calc(100% - 550px)'
}
},
fontFamily: {
'serif': ['Aleo', 'Times New Roman', 'ui-sans-serif', 'system-ui'],
'sans': ['Raleway', 'Arial', 'Helvetica', 'ui-serif'],
'mono': ['Fira Code', 'ui-monospace', 'SFMono-Regular'],
}
},
plugins: [require('@tailwindcss/typography')]
} as Config;