-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
121 lines (118 loc) · 2.49 KB
/
tailwind.config.cjs
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.vue",
],
darkMode: "class",
theme: {
extend: {
colors: {
primary: {
DEFAULT: "var(--color-primary)",
dark: "var(--color-primary-dark)",
light: "var(--color-primary-light)",
text: "var(--color-primary-text)",
},
secondary: {
DEFAULT: "var(--color-secondary)",
light: "var(--color-secondary-light)",
},
heading: {
DEFAULT: "var(--color-heading)",
light: "var(--color-heading-light)",
},
body: "#555555",
"colorado-blue": "#002868",
"colorado-red": "#bf0a30",
"colorado-yellow": "#ffd700",
white: {
DEFAULT: "#FFFFFF",
light: "#f9f9f9",
lighter: "#fafafa",
deep: "#EDEBF5",
},
black: {
DEFAULT: "#000000",
light: "#333333",
deep: "#222222",
},
gray: {
light: "#f7f7f7",
},
blue: {
dark: "#0f0054",
},
},
spacing: {
30: "30px",
15: "60px",
50: "50px",
},
borderWidth: {
1: "1px",
},
keyframes: {
waves: {
"0%": {
transform: "scale(0)",
},
"100%": {
opacity: "0",
transform: "scale(1.0)",
},
},
fadeInDown: {
from: {
opacity: "0",
transform: "translate3d(0, -100%, 0)",
},
to: {
opacity: "1",
transform: "none",
},
},
},
animation: {
spinner: "waves 1.0s infinite ease-in-out",
fadeInDown: "fadeInDown .7s ease-in-out 0s 1 normal none running",
},
},
fontSize: {
base: ["15px"],
normal: "16px",
sm: ["0.875rem"],
lg: ["1.125rem"],
xl: ["1.25rem"],
"2xl": ["1.5rem"],
"3xl": ["1.875rem"],
"4xl": ["2.25rem"],
"6xl": [
"3.75rem",
{
lineHeight: "1.2",
},
],
},
fontFamily: {
base: ["Maven Pro", "Tahoma"],
},
container: {
center: true,
padding: {
DEFAULT: "15px",
},
},
gridColumnEnd: {
"-1": "-1",
},
screens: {
xs: "480px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1200px",
},
},
plugins: [],
}