-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
83 lines (82 loc) · 2.55 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontSize: {
xs: "0.75rem",
sm: "0.875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
"5xl": "3rem",
"6xl": "4rem",
},
width: {
'320' : '80rem',
'160' : '40rem',
'240' : '60rem',
'220' : '55rem',
'200': '50rem',
},
boxShadow: {
'ml': '0px 4px 20px rgba(0, 0, 0, 0.35)',
},
translate: {
'3/20': '15%',
'1/10': '10%',
'1/20': '5%',
},
fontFamily: {
'apple': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
'manrope': ['Manrope', 'sans-serif'],
},
colors: {
'lightgreen': '#8DD9B2',
'normalgreen': '#8DD9B2',
'darkgreen': '#3E8277',
'darkgray': '#6d6d6d',
'darkwhite': '#f2f2f2',
'offdarkwhite': '#efefef',
'darkergray': '#111111',
'offdarkergray': '#1e1e1e',
},
backgroundImage: {
'blue-gradient': "linear-gradient(90deg, #60a5fa, #22d3ee, #38bdf8, #60a5fa)",
'orange-gradient': "linear-gradient(90deg, orange, #ff3b3b, #ff9b57, orange)",
'yosemite': 'url(/images/bgs/yosemite.webp)',
'homelight': 'linear-gradient(90deg, rgba(242,242,242,1) 33%, rgba(242,242,242,0.7) 70%, rgba(242,242,242,0) 100%)',
'homedark': 'linear-gradient(90deg, rgba(17,17,17,1) 50%, rgba(17,17,17,0.5) 70%, rgba(17,17,17,0) 100%)',
'phoenix' : 'url(/images/bgs/phoenix.webp)',
},
backgroundSize: {
'200%': '200%',
},
scale: {
'102': '1.02',
},
borderRadius: {
'ml': '7px',
},
animation: {
'gradient-cycle': 'background-pan 3s ease infinite',
},
keyframes: {
'background-pan': {
'0%': { backgroundPosition: '0%' },
'100%': { backgroundPosition: '-200%' },
}
},
dropShadow: {
'3xl': '0 35px 35px rgba(0, 0, 0, 0.25)',
'4xl-orange': [
'0 35px 35px rgba(180, 80, 60, 0.5)',
]
}
},
},
plugins: [],
}