-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwind.config.js
56 lines (56 loc) · 1.02 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
fontFamily: {
header: ['"Hammersmith One"', 'sans-serif']
},
colors: {
primary: {
DEFAULT: '#6a1b9a',
dark: '#b18bd3',
mid: '#d2bae9',
light: '#f7f1fb',
ligther: '#f9f7fb'
},
background: '#ffffff',
error: '#cc1b1b',
yellowish: {
DEFAULT: 'rgb(245 245 245)',
light: '#fbfbfa'
},
secondary: {
DEFAULT: '#61988e',
light: '#d0ebe6'
},
grey: {
DEFAULT: '#333333',
dark: '#73726f',
darker: '#989895',
light: '#d3d3d3',
lighter: '#e0e0e0'
},
black: {
DEFAULT: '#000000',
transparent: '#0000000A'
},
white: {
DEFAULT: '#ffffff'
},
project: {
DEFAULT: '#6a1b9a',
light: '#f7f1fb'
},
report: {
DEFAULT: '#3454B4',
light: '#ECF1FE'
}
},
extend: {
gridTemplateColumns: {
home: 'repeat(auto-fill, minmax(275px, 1fr))'
}
}
},
plugins: [require('@tailwindcss/typography')]
};