-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
116 lines (116 loc) · 2.77 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
113
114
115
116
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./slices/**/*.{js,ts,jsx,tsx}",
],
darkMode: "media", // or 'media' or 'class'
theme: {
// Grayscale Design palette: https://grayscale.design/app?lums=92.72,85.96,73.80,58.88,39.22,25.38,15.15,11.44,5.71,2.32&palettes=%233e4545,%23f8c23d,%2300919F,%23f05356,%23202945&filters=0%7C0,0%7C0,0%7C0,0%7C0,0%7C0&names=gray,,,red,purple&labels=,,,,
colors: {
white: "#fff",
grayscale: {
50: "#f7f7f7",
100: "#efefef",
200: "#dfdfdf",
300: "#cacaca",
400: "#a8a8a8",
500: "#8a8a8a",
600: "#6d6d6d",
700: "#5f5f5f",
800: "#444444",
900: "#2a2a2a",
},
gray: {
50: "#f6f7f7",
100: "#edefef",
200: "#dce0e0",
300: "#c5cbcb",
400: "#a1aaaa",
500: "#808d8d",
600: "#646f6f",
700: "#576161",
800: "#3e4545", // brand
900: "#272b2b",
},
yellow: {
50: "#fef6e2",
100: "#fdeec8",
200: "#fbdc8e",
300: "#f8c23a", // brand
400: "#d99e08",
500: "#b38206",
600: "#8c6605",
700: "#7b5904",
800: "#584003",
900: "#372802",
},
teal: {
50: "#ddfcff",
100: "#b8f9ff",
200: "#64f2ff",
300: "#00def2",
400: "#00bacb",
500: "#00919F", // brand
600: "#007883",
700: "#006973",
800: "#004b52",
900: "#003034",
},
red: {
50: "#fef5f5",
100: "#fdeaea",
200: "#fbd6d7",
300: "#f9babb",
400: "#f5898b",
500: "#f05356", // brand
600: "#d81316",
700: "#be1113",
800: "#8a0c0e",
900: "#590809",
},
purple: {
50: "#f6f7fb",
100: "#eceff6",
200: "#dadfee",
300: "#c1c9e2",
400: "#9aa7d0",
500: "#7688bf",
600: "#536aaf",
700: "#475c9a",
800: "#33426e",
900: "#202945", // brand
},
},
extend: {
fontFamily: {
title: ["'Novecento Sans Wide'"],
serif: ['"DM Serif Display"'],
sans: [
"Montserrat",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Arial",
"Noto Sans",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
boxShadow: {
white:
"0 1px 3px 0 rgba(255, 255, 255, 0.9), 0 1px 2px 0 rgba(255, 255, 255, 0.94)",
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography')
],
};