-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (54 loc) · 1.45 KB
/
tailwind.config.js
File metadata and controls
56 lines (54 loc) · 1.45 KB
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"nav": "#0D192E",
"light-nav": "#15223E",
"lightest-navy": "#233554",
"slate":"#8892b0",
"light-slate": "#a8b2d1",
"lightest-slate": "#ccd6f6",
"green": "#64ffda",
"white": "#e6f1ff",
"green-tint": "rgb(100 255 218 / 10%)"
},
fontFamily: {
"mono": ["SF Mono","Fira Code","Fira Mono","Roboto Mono",...defaultTheme.fontFamily.mono],
"sans": ["Calibre","Inter","San Francisco","SF Pro Text",...defaultTheme.fontFamily.sans]
},
boxShadow: {
"aside": "-10px 0px 30px -15px rgba(2, 12, 27, 0.7)"
},
fontSize: {
"fz-xxs": "12px",
"fz-xs": "13px",
"fx-sm": "14px",
"fz-md": "16px",
"fz-lg": "18px",
"fz-xl":"20px",
"fz-xxl": "22px",
"fz-heading": "32px",
"fluid": "clamp(14px, 4vw, 18px)"
},
padding: {
"12.5": "50px"
},
keyframes: {
fadeDown: {
'0%': { opacity: 0, transform:'translateY(8px)'},
'100%': { opacity: 1, transform:'translateY(0)' },
}
},
animation: {
fadeDown: 'fadeDown 1s linear forwards',
}
},
},
plugins: [],
};