-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
96 lines (92 loc) · 2.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
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
85
86
87
88
89
90
91
92
93
94
95
96
const colors = require('tailwindcss/colors')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx,html}",
"./components/**/*.{js,ts,jsx,tsx}",
"./shared/*.{js,ts,jsx,tsx}",
"./node_modules/flowbite-react/**/*.js",
"./src/**/*.{js,ts,jsx,tsx}",
],
plugins: [require("flowbite/plugin"), require("@tailwindcss/typography")],
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "976px",
xl: "1440px",
},
colors: {
primary: "blue",
transparentBg: "transparent",
blue: "#1fb6ff",
mod1Color: "#6B7280",
primaryDark: "#201F1F",
primaryGrey: "#2A2A2A",
secondaryGrey: "#CECECE",
funPinkDark: "#ba8b02",
},
extend: {
colors: {
"fun-gray-light": "#b2bbcf",
"fun-gray": "#7b89a8",
"fun-gray-medium": "#767c85",
"fun-gray-darker": "#2a2a2c",
"fun-gray-dark": "#1F1F20",
"fun-gray-darkest": "#141414",
"fun-pink": "#00c7ff",
"fun-pink-darker": "#000f2e",
"fun-pink-darkest": "#000c24",
"fun-pink-dark": "#192742",
"fun-pink-light": "#009ac5",
},
typography: {
DEFAULT: {
css: {
color: '#333',
a: {
color: '#3182ce',
'&:hover': {
color: '#2c5282',
},
},
p: {
fontFamily: ["Inter", 'sans-serif']
}
},
},
},
rotate: {
'360': '360deg'
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
}
},
animation: {
'fadeInAndBounce': 'fadeIn 3s ease-out',
},
willChange: {
'projectCard': 'border-color, opacity, transform',
}
},
fontFamily: {
sans: ["Graphik", "sans-serif"],
serif: ["Merriweather", "serif"],
headingFamily: ["IBM Plex Mono"],
bodyFamily: ['Inter', 'sans-serif'],
},
extend: {
spacing: {
128: "32rem",
144: "36rem",
},
borderRadius: {
"4xl": "2rem",
},
},
},
};