-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
41 lines (41 loc) · 941 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`./src/pages/**/*.{js,jsx,ts,tsx}`,
`./src/components/**/*.{js,jsx,ts,tsx}`,
],
theme: {
extend: {
colors: {
success: '#28C76F',
error: "#EA5455",
yellow: "#FFD600",
orange: "#FF9F43",
violet: "#584CDB",
teal: "#00BBB7",
secondary: {
DEFAULT: "#0065C1",
light: "#E0F0FB",
muted: "#99C1E6",
500: "#0185E4",
},
typography: {
DEFAULT: "#EBE9F1",
heading: "#5E5873",
body: "#6E6B7B",
muted: "#B9B9C3",
50: "#E6E7E7",
200: "#B4B7B8",
300: "#9C9FA1",
500: "#6A7071",
600: "#515759",
700: "#394042",
},
},
},
},
plugins: [], // [require('tailwindcss-animate')],
future: {
hoverOnlyWhenSupported: true,
},
}