forked from eser/acikkaynak-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
66 lines (65 loc) · 1.49 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
// const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
`${__dirname}/src/**/*.{tsx,ts,jsx,js}`,
`${__dirname}/next.config.js`,
],
safelist: [
{
pattern: /(bg|text)-slate-800/,
variants: ["dark"],
},
],
darkMode: "class",
variants: {
extend: {
display: ["group-hover"],
},
},
theme: {
extend: {
transitionProperty: {
width: "width",
},
fontFamily: {
// "sans": ["SF Pro Rounded", defaultTheme.fontFamily.sans],
},
colors: {
"background": "rgb(255, 255, 255)",
"background-dark": "rgb(21, 42, 53)",
"skeleton": "rgb(226, 232, 240)",
"skeleton-dark": "rgb(41, 62, 73)",
"transparent": "transparent",
"primary": "rgb(36, 124, 196)",
"secondary": "rgb(77, 161, 59)",
"lead-black": {
100: "#F3F2F3",
200: "#E8E5E8",
300: "#BCB8BB",
400: "#797779",
500: "#212021",
600: "#1B171C",
700: "#161017",
800: "#100A13",
900: "#0C060F",
},
},
height: {
"10vh": "10vh",
"20vh": "20vh",
"30vh": "30vh",
"40vh": "40vh",
"50vh": "50vh",
"60vh": "60vh",
"70vh": "70vh",
"80vh": "80vh",
"90vh": "90vh",
"100vh": "100vh",
},
},
},
plugins: [
require("@tailwindcss/typography"),
],
};