-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (53 loc) · 1.54 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
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
module.exports = {
purge: ["./src/*.html", "./src/*.js"],
darkMode: false,
theme: {
colors: {
white: "#FFFFFF",
gray: "#EFF1FA",
darkblue: "#1E213F",
darkestblue: "#161932",
lightblue: "#D7E0FF",
violet: "#D881F8",
cyan: "#70F3F8",
red: "hsl(0, 91%, 71%)",
"red-300": "hsl(0, 91%, 81%)",
},
extend: {
transitionProperty: {
"stroke-dashoffset": "stroke-dashoffset",
},
letterSpacing: {
tightest: "-0.05em",
widest: "1.4em",
},
fontFamily: {
"kumbh-sans": ["Kumbh Sans", ...defaultTheme.fontFamily.sans],
"roboto-slab": ["Roboto Slab", ...defaultTheme.fontFamily.serif],
"space-mono": ["Space Mono", ...defaultTheme.fontFamily.mono],
},
fontSize: {
logo: "2em",
time: "6.25em",
},
boxShadow: {
light: "-50px -50px 100px 0 rgba(22, 25, 50, 0.5), 50px 50px 100px 0 rgba(215, 224, 255, 0.1)",
lightwithinset:
"-50px -50px 100px 0 rgba(215, 224, 255, 0.1), 50px 50px 100px 0 rgba(22, 25, 50, 0.5), inset 20px 20px 25px 0 rgba(22, 25, 50, 0.5), inset -20px -20px 25px 0 rgba(215, 224, 255, 0.1)",
},
},
},
variants: {
extend: {
boxShadow: ["active"],
fontWeight: ["active"],
ringWidth: ["hover"],
backgroundColor: ["disabled"],
textColor: ["disabled"],
cursor: ["disabled"],
},
},
plugins: [],
};