-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (43 loc) · 1.31 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
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'dyo-turquoise': '#00d0bf',
'dyo-green': '#28c76f',
'dyo-purple': '#540ba7',
'dyo-purple-light': '#e1ccf8',
'dyo-blue': '#00cfe8',
'dyo-light-blue': '#067090',
'bright': "#d0d2d6",
'bright-muted': '#676d7d',
'light-eased': '#b4b7bd',
'light-grey': '#3b4253',
'light-grey-muted': '#404656',
'light': '#7783a3',
'medium-eased': '#343d55',
'medium': '#283046',
'dark': '#161d31',
'error-red': '#ea5455',
'warning-orange': '#ff9f43',
'light-cyan': '#00EBD7',
},
height: {
'128': '32rem',
},
maxHeight: {
'128': '32rem',
},
boxShadow: {
'modal': '0 0 20px 5px rgb(0 0 0 / 0.25)',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/line-clamp')],
}