-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 913 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
35
36
37
38
39
40
41
const { classicNameResolver } = require("typescript");
/* eslint-disable no-unused-vars */
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
height: {
almost: "calc(100vh - 8rem)",
},
fontFamily: {
lato: "'Lato', 'sans-serif'",
},
gradientColorStops: (theme) => ({
aidark: "#1f040f",
aipink: "#a31648",
}),
colors: {
ai: {
DEFAULT: "#A31648",
50: "#F4ABC5",
100: "#F194B5",
200: "#EB6796",
300: "#E43B77",
400: "#D01C5C",
500: "#A31648",
600: "#761034",
700: "#490A20",
800: "#1C040C",
900: "#000000",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};