-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (48 loc) · 972 Bytes
/
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
const colors = require("tailwindcss/colors");
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
screens: {
xs: "400px",
},
},
fontFamily: {
body: ["Niveau Grotesk", "sans-serif"],
},
typography: (theme) => ({}),
fontWeight: {
light: 300,
regular: 400,
medium: 500,
bold: 700,
black: 900,
},
colors: {
transparent: "transparent",
current: "currentColor",
// Don't add black here. You don't want black, you want gray-900.
white: colors.white,
gray: colors.stone,
red: {
50: "#ffebe6",
700: "#dd3535",
},
green: {
50: "#ecf3ed",
400: "#96b49d",
500: "#6ea36d",
800: "#465C4A",
},
orange: {
400: "#cfad86",
500: "#B6A086",
},
blue: {
500: "#7774F2",
},
},
},
plugins: [],
};