-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (63 loc) · 1.26 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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
colors: {
darkTheme: "#171a23",
white: {
900: "#ffffff",
700: "#C9C9CB",
500: "#A5A6A9",
300: "#363B49",
},
gray: {
700: "#8E8E8E",
900: "#363B49",
},
lightTheme: "#ffffff",
blue: {
700: "#7899FB",
900: "#3C6CFF",
},
black: {
900: "#000000",
700: "#404040",
},
pink: "#EEE8F6",
},
extend: {
keyframes: {
fadeIn: {
"0%": {
opacity: 0,
transform: "translateY(10px)",
},
"100%": {
opacity: 1,
transform: "none",
},
},
},
animation: {
fadeIn: "fadeIn 0.2s ease-in-out forwards",
},
transitionProperty: {
top: "top",
},
fontFamily: {
sans: ["Rubik", ...defaultTheme.fontFamily.sans],
},
fontSize: {
"5xl": "2.8125rem",
sectionHeader: "1.75rem",
},
},
},
variants: {
extend: {
opacity: ["dark"],
},
},
plugins: [],
};