-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
50 lines (49 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/*.{html,js}", "./public/**/*.{html,js}"],
theme: {
fontFamily: {
body: ["Inter", "sans-serif"],
"League-Gothic": ["League Gothic", "sans-serif"],
Assistant: ["Assistant", "sans-serif"],
Quicksand: ["Quicksand", "sans-serif"],
FiraCode: ["Fira Code", "monospace"],
},
listStyleType: {
none: "none",
disc: "disc",
decimal: "decimal",
square: "square",
roman: "upper-roman",
},
extend: {
colors: {
"light-background": "#FAFAFA",
purple: "#955B9F",
blue: "#747AB9",
"dark-gray": "#2F2F2F",
"code-background": "#F5F4F1",
"cli-background": "#262626",
// classic colors
"classic-green": "#A1B56C",
"classic-brown": "#A1887F",
"classic-yellow": "#E6BD81",
"classic-blue": "#86C1B9",
"classic-purple": "#B278FF",
"classic-pink": "#F56FF0",
},
flex: {
2: "2 2 0%",
},
animation: {
shine: "shine 1s linear",
},
keyframes: {
shine: {
"100%": { left: "125%" },
},
},
},
},
plugins: [require("@tailwindcss/line-clamp")],
};