generated from devtodollars/mvp-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (44 loc) · 1.01 KB
/
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
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: ['var(--font-sans)', ...fontFamily.sans],
wood: ['WoodHeinzNo2', ...fontFamily.sans],
mont: ['Montserrat', ...fontFamily.sans],
},
borderRadius: {
sm: "4px",
},
screens: {
sm: "0px",
lg: "997px",
},
colors: {
primary: "#ffca28",
surface1: "#343434",
surface2: "#1b1b1d",
gray: {
50: '#e5e5e5',
100: '#cccccc',
200: '#b3b3b3',
300: '#999999',
400: '#808080',
500: '#666666',
600: '#4d4d4d',
700: '#343434',
800: '#1b1b1d',
900: '#000000',
},
},
},
},
plugins: [],
};