-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
52 lines (51 loc) · 1.31 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
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
screens: {
xs: { max: "425px" },
sm: { max: "768px" },
"max-lg": { max: "1024px" },
},
animation: {
"animate-alt-spin": "spin 1s linear infinite reverse",
"spin-slow": "spin 3s linear infinite",
},
height: {
154: "38rem",
"500px": "500px",
},
colors: {
transparent: "transparent",
current: "currentColor",
red: "#ff7b5f",
pink: "#ffa3e0",
yellow: "#ffe5a3",
purple: "#7b61ff",
"dark-yellow": "#ffd233",
orange: "#ff7b5f",
green: "#24CA49",
"light-blue": "#dfeaef",
grey: ["#f9f9fb", "#e6e7e8", "#c4c4c4"],
white: "#ffffff",
"lighter-gray": "#F2F3F7",
"dark-gray": "#16161e",
"light-gray": "#1e1e24",
"sea-green": "#15FFAB",
"neon-purple": "#C47DFC",
"neon-peach": "#FF8181",
"light-yellow": "#F8F7E2",
},
},
fontFamily: {
audiowide: ["'AudioWide'"],
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};