-
Notifications
You must be signed in to change notification settings - Fork 24
/
tailwind.config.js
55 lines (54 loc) · 1.21 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layout/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xs: "360px",
...defaultTheme.screens,
},
rotate: {
15: "15deg",
"-180": "-180deg",
"-90": "-90deg",
"-45": "-45deg",
0: "0",
45: "45deg",
90: "90deg",
135: "135deg",
180: "180deg",
270: "270deg",
},
extend: {
colors: {
primary: "#04041C",
secondary: "#04041C",
tertiary: "#04041C",
quaternary: "#330BFF",
quinary: "#FF800D",
success: "#008F05",
failure: "#FF4444",
warning: "#E09200",
},
fontFamily: {
iblack: ["Inter-Black"],
iextrabold: ["Inter-ExtraBold"],
ibold: ["Inter-Bold"],
isemibold: ["Inter-SemiBold"],
imedium: ["Inter-Medium"],
iregular: ["Inter-Regular"],
ilight: ["Inter-Light"],
iextralight: ["Inter-ExtraLight"],
ithin: ["Inter-Thin"],
terminal: ["Terminal"],
},
},
},
variants: {
extend: {},
},
plugins: [],
};