-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
84 lines (84 loc) · 1.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const { colors } = require(`tailwindcss/defaultTheme`);
// console.log(colors.purple);
module.exports = {
mode: "jit", // see https://tailwindcss.com/docs/just-in-time-mode
purge: ["./components/**/*.js","./components/**/*.jsx", "./pages/**/*.js"],
darkMode: false, // or "media" or "class"
variants: {
fill: ["hover", "focus"], // this line does the trick
},
theme: {
extend: {
colors: {
brand: {
300: '#996DFF',
500: '#8257e6',
},
primary: "#532565",
purple: {
light: "#c0b3c5",
DEFAULT: "#532565",
dark: "#532565",
},
magenta: {
light2: "#e5e0e7",
light: "#dabeca",
DEFAULT: "#982568",
dark: "",
new: "#8b5b92",
},
red: {
light: "#dbb9b3",
DEFAULT: "#981f32",
dark: "",
},
coral: {
light: "#eecdcb",
DEFAULT: "#bf362e",
dark: "",
},
orange: {
light: "f5d8c3",
DEFAULT: "#e07c3e",
dark: "",
},
gray: {
light: "#dddddd",
DEFAULT: "#818a91",
dark: "#373a3c",
},
blue: {
light: "",
DEFAULT: "#0044B3",
dark: "",
},
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
md: "2rem",
},
},
},
fontFamily: {
sans: ["Montserrat", "sans-serif"],
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
large: { min: "1051px" },
xl: "1280px",
mdmax: { max: "1050px" },
},
},
variants: {
extend: {},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
require("tailwind-scrollbar"),
],
};