-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.cjs
47 lines (46 loc) · 1.47 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
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false,
container: false,
},
darkMode: ["class", '[data-theme="dark"]'],
content: ["./src/**/*.{jsx,tsx,html}"],
theme: {
extend: {
fontFamily: {
sans: ['"Inter"', ...fontFamily.sans],
jakarta: ['"Plus Jakarta Sans"', ...fontFamily.sans],
mono: ['"Fira Code"', ...fontFamily.mono],
},
borderRadius: {
sm: "4px",
},
screens: {
sm: "0px",
lg: "997px",
},
colors: {
primary: {
DEFAULT:
"rgb(var(--docs-color-primary-200, 33 96 253) / <alpha-value>)",
100: "rgb(var(--docs-color-primary-100, 26 144 255) / <alpha-value>)",
200: "rgb(var(--docs-color-primary-200, 33 96 253) / <alpha-value>)",
},
secondary: {
DEFAULT:
"rgb(var(--docs-color-secondary-1000, 0 0 0) / <alpha-value>)",
1000: "rgb(var(--docs-color-secondary-1000, 0 0 0) / <alpha-value>)",
900: "rgb(var(--docs-color-secondary-900, 25 25 25) / <alpha-value>)",
800: "rgb(var(--docs-color-secondary-800, 38 38 38) / <alpha-value>)",
700: "rgb(var(--docs-color-secondary-700, 71 71 71) / <alpha-value>)",
},
text: {
400: "rgb(var(--docs-color-text-400, 153 153 153) / <alpha-value>)",
},
},
},
},
plugins: [],
};