-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (63 loc) · 1.43 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
57
58
59
60
61
62
63
64
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}"],
corePlugins: {
fontSize: false,
},
theme: {
extend: {
fontFamily: {
sans: ["'Exo 2'", ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
"breadcrumb-arrow": "url('/breadcrumb-arrow.svg')",
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1280px",
xl: "1520px",
},
colors: {
font: {
primary: "#242222",
secondary: "#333333",
link: "#0064AF",
},
primary: {
dark: "#0064af",
DEFAULT: "#0099ff",
light: "#49c2f1",
lightest: "#EDFAFF",
},
turquoise: "#00b0cc",
green: {
dark: "#207a43",
darker: "#54AC54",
DEFAULT: "#8dcb6d",
lightest: "#F5FFEF",
},
orange: {
dark: "#F0AD4E",
DEFAULT: "#ffc300",
light: "#FFF6E8",
},
purple: "#a050a0",
deepRed: "#c73f00",
red: "#F10E0E",
fuchsia: { dark: "#e50083", DEFAULT: "#FF70A6", light: "#FFF8FB" },
black: "#000000",
gray: {
darkest: "#333333",
dark: "#4a4a4a",
DEFAULT: "#999999",
light: "#E5E5E5",
lightest: "#F8F8F8",
},
white: "#FFFFFF",
transparent: "transparent",
},
},
plugins: [],
};