-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
72 lines (71 loc) · 1.67 KB
/
tailwind.config.js
File metadata and controls
72 lines (71 loc) · 1.67 KB
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
const colors = require("tailwindcss/colors")
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
colors: {
white: colors.white,
slate: colors.slate,
},
extend: {
screens: {
sm: "580px",
},
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
lores: ["LoRes9PlusOT", "Monospace"],
grotesque: ["TerminalGrotesque", "Monospace"],
},
colors: {
transparent: "transparent",
current: "currentColor",
black: {
DEFAULT: "#0D0E11",
100: "#0D0E11",
},
gray: {
DEFAULT: "#646464",
40: "#979797", // concrete 115
50: "#646464", // concrete 100
80: "#4d4d4dff", // wet-concrete 115
90: "#2E2E2E", // wet-concrete
100: "#1A1A1A", // wet-concrete 90
},
slate: {
50: "#F8FAFC",
100: "#F1F5F9",
200: "#E2E8F0",
500: "#64748B",
800: "#15181C",
},
violet: {
DEFAULT: "#AD72FF",
80: "#684499",
100: "#AD72FF",
},
green: {
DEFAULT: "#50B488",
100: "#50B488",
},
blue: {
DEFAULT: "#5F6FFF",
100: "#5F6FFF",
},
orange: {
DEFAULT: "#FF9956",
100: "#FF9956",
},
red: {
DEFAULT: "#FF5650",
100: "#FF5650",
},
yellow: {
DEFAULT: "#F9C81B",
100: "#F9C81B",
},
},
},
},
plugins: [],
}