-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
75 lines (73 loc) · 1.38 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
65
66
67
68
69
70
71
72
73
74
75
const defaultColors = require("tailwindcss/colors");
const colors = {
grey: {
100: "#EFEDF2",
200: "#E3DFEB",
300: "#D9D3E3",
400: "#C8C0D7",
500: "#B0A9BD",
600: "#9D97A6",
700: "#908C96",
800: "#6B6870",
900: "#4C494F",
999: "#202024",
},
success: {
100: "#B7F2B6",
200: "#82E581",
300: "#52CC50",
400: "#37A835",
500: "#217D1F",
},
warning: {
100: "#FFF3C9",
200: "#FAE496",
300: "#F0D678",
400: "#F0CA44",
500: "#E1B000",
},
error: {
100: "#FFD5CC",
200: "#FFAC99",
300: "#FA8970",
400: "#F06040",
500: "#B23317",
},
};
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./**/*.{rs,html,md}",
"!./target/**/*",
],
theme: {
fontSize: {
sm: "0.8rem",
base: "1rem",
lg: "1.25rem",
xl: "1.563rem",
"2xl": "1.953rem",
"3xl": "2.441rem",
"4xl": "3.052rem",
},
colors: {
...defaultColors,
background: "#F0F0FF",
coding_background: "#231c2e",
text: "#121131",
codeText: "#F0F0FF",
subtitle: "#121131",
berryBlue: "#A1A8FF",
almostBackground: "#040249",
footer: "#2f2f34",
...colors,
},
extend: {
fontFamily: {
sans: ["Quicksand", "sans-serif"],
mono: ["ComicCode", "monospace"],
},
},
},
plugins: [],
};