-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (37 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'Dark-Blue-Dark-Mode-Elements': 'hsl(209, 23%, 22%)',
'Very-Dark-Blue-Dark-Mode-Background': 'hsl(207, 26%, 17%)',
'Very-Dark-Blue-Light-Mode-Text': 'hsl(200, 15%, 8%)',
'Dark-Gray-Light-Mode-Input': 'hsl(0, 0%, 52%)',
'Very-Light-Gray-Light-Mode-Background': 'hsl(0, 0%, 98%)',
'White-Dark-Mode-Text-Light-Mode-Elements': 'hsl(0, 0%, 100%)',
},
boxShadow: {
'light-box-shadow': '0 0 5px 0 hsla(0, 0%, 52%, 0.425)',
'dark-box-shadow': '0 0 4px 0 var(--Very-Dark-Blue-Light-Mode-Text)'
},
keyframes: {
loading: {
'0%': { transform: 'scale(1)', opacity: '1' },
'50%': { transform: 'scale(0)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' },
}
},
animation: {
loading1: 'loading 1s infinite',
loading2: 'loading 1s infinite 0.2s',
loading3: 'loading 1s infinite 0.4s',
}
},
},
plugins: [],
}