forked from hazae41/ethbrno-logs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
70 lines (67 loc) · 1.62 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
theme: {
extend: {
colors: {
violet1: "#fdfcfe",
violet2: "#fbfaff",
violet3: "#f5f2ff",
violet4: "#ede9fe",
violet5: "#e4defc",
violet6: "#d7cff9",
violet7: "#c4b8f3",
violet8: "#aa99ec",
violet9: "#6e56cf",
violet10: "#644fc1",
violet11: "#5746af",
violet12: "#20134b",
violet13: "#110a29",
mauve1: "#fdfcfd",
mauve2: "#f9f8f9",
mauve3: "#f4f2f4",
mauve4: "#eeedef",
mauve5: "#e9e8ea",
mauve6: "#e4e2e4",
mauve7: "#dcdbdd",
mauve8: "#c8c7cb",
mauve9: "#908e96",
mauve10: "#86848d",
mauve11: "#6f6e77",
mauve12: "#1a1523",
tomato1: "#fffcfc",
tomato2: "#fff8f7",
tomato3: "#fff0ee",
tomato4: "#ffe6e2",
tomato5: "#fdd8d3",
tomato6: "#fac7be",
tomato7: "#f3b0a2",
tomato8: "#ea9280",
tomato9: "#e54d2e",
tomato10: "#db4324",
tomato11: "#ca3214",
"tomato11.5": "#8b230e",
tomato12: "#341711",
grass1: "#fbfefb",
grass2: "#f3fcf3",
grass3: "#ebf9eb",
grass4: "#dff3df",
grass5: "#ceebcf",
grass6: "#b7dfba",
grass7: "#97cf9c",
grass8: "#65ba75",
grass9: "#46a758",
grass10: "#3d9a50",
grass11: "#297c3b",
grass12: "#1b311e",
},
},
},
};