-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
34 lines (33 loc) · 938 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
// const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/pages/**/*.{js,ts,jsx,tsx}", "./src/components/**/*.{js,ts,jsx,tsx}"],
media: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: "#FFB400",
"black-light": "#101010",
"black-lighter": "#3C3C3C"
},
spacing: {
"48p": "48px",
"72p": "72px",
"96p": "96px"
},
width: {
"full-0.5": "calc(100% - 0.5rem)",
}
},
// screens: {
// "mo-sm": "240px",
// "mo-md": "320px",
// "mo-lg": "411px",
// ...defaultTheme.screens,
// }
},
variants: {
extend: {},
},
plugins: [],
};