-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
95 lines (95 loc) · 2.2 KB
/
tailwind.config.mjs
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
borderWidth: {
DEFAULT: "1px",
},
maxWidth: {
"screen-xs": "400px",
},
gridTemplateRows: {
'layout_mobile': 'auto 1fr'
},
gridTemplateColumns: {
'layout_desktop': 'auto 1fr'
},
colors: {
"raisin-black": {
DEFAULT: "#1a202c",
100: "#050709",
200: "#0b0d12",
300: "#10141b",
400: "#151a24",
500: "#1a202c",
600: "#3b4964",
700: "#5b719c",
800: "#90a0be",
900: "#c8cfdf",
},
"white-smoke": {
DEFAULT: "#f5f5f5",
100: "#313131",
200: "#626262",
300: "#939393",
400: "#c4c4c4",
500: "#f5f5f5",
600: "#f7f7f7",
700: "#f9f9f9",
800: "#fbfbfb",
900: "#fdfdfd",
},
seasalt: {
DEFAULT: "#f8f9fa",
100: "#29323a",
200: "#536475",
300: "#8496a8",
400: "#bfc8d1",
500: "#f8f9fa",
600: "#fafbfc",
700: "#fbfcfc",
800: "#fdfdfd",
900: "#fefefe",
},
tekhelet: {
DEFAULT: "#3d348b",
100: "#0c0a1c",
200: "#181437",
300: "#241f53",
400: "#30296e",
500: "#3d348b",
600: "#5044b9",
700: "#7b72cb",
800: "#a7a1dc",
900: "#d3d0ee",
},
persimmon: {
DEFAULT: "#f35b04",
100: "#301201",
200: "#602401",
300: "#913602",
400: "#c14903",
500: "#f35b04",
600: "#fc792e",
700: "#fd9b62",
800: "#fdbc97",
900: "#fedecb",
},
black_rain: {
DEFAULT: "#212529",
100: "#030404",
200: "#070708",
300: "#0a0b0c",
400: "#0d0f10",
500: "#111315",
600: "#141619",
700: "#171a1d",
800: "#212529",
900: "#373b3e"
}
},
},
},
plugins: [],
};