-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
112 lines (111 loc) · 2.22 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
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: 'media',
theme: {
extend: {
colors: {
beige: {
DEFAULT: "#bda699",
light: "#b8b6a5",
text: "#CFCFCF",
dark: "#94918b",
darker: "#1a1819",
inactive: "#AFAA9F",
active: "#E6E2CF",
accent: "#E3E3C7",
},
brown: {
DEFAULT: "#4a4341",
},
grey: {
dark: "#0C0C0C",
lighter: "#1D1D1D",
foreground: "#2D2D2D",
detail: "#AAAAAA",
},
black: {
DEFAULT: "#040404",
},
transparent: {
DEFAULT: "rgba(255, 255, 255, 0)",
bg: "rgba(255, 255, 255, 0.1)",
},
},
zIndex: {
menu: "9999",
panels: "999",
"-1": "-1",
},
gridTemplateColumns: {
"with-sidenav": "400px 1fr",
"third-one": "3fr 1fr",
},
fontFamily: {
display: [
"Cormorant",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica",
"Arial",
"sans-serif",
],
labor: [
"Noto Sans",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Helvetica",
"Arial",
"sans-serif",
],
},
borderWidth: {
3: "3px",
},
height: {
"9/10": "90%",
},
spacing: {
42: "10.5rem",
},
boxShadow: {
border: "0 0 0 0.1rem #bda699",
},
brightness: {
30: "30%",
},
scale: {
"-1": "-1",
},
minWidth: {
20: "5rem",
},
minHeight: {
20: "5rem",
},
translate: {
'-screen': '-100vh',
},
fontSize: {
xxs: '10px',
}
},
screens: {
'xs': '475px',
...defaultTheme.screens,
},
},
variants: {
extend: {
scale: ["group-hover"],
translate: ["group-hover"],
brightness: ["hover"],
},
},
plugins: [
require("tailwindcss-easing"),
require("@tailwindcss/aspect-ratio"),
],
};