-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 998 Bytes
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 998 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
darkMode: 'class',
theme: {
screens: {
sm: "480px",
md: "768px",
lg: "1024px"
},
extend: {
colors: {
primaryColor: '#010a5e',
primaryColorLight: "#010d78",
secondaryColor: '#FFCC00',
paragraphColor: '#c0c0c0',
whiteColor: '#fff',
blackColor: "#000",
greenColor: "#007936",
redColor: "#cc3433",
darkColor: '#000',
darkColorLight: "#171717",
},
keyframes: {
move: {
"50%": {transform: 'translateY(-1rem)'}
}
},
animation: {
'movingY': 'move 2s linear infinite'
}
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.5rem'
}
},
fontFamily: {
oswald: ['Oswald', 'sans-serif'],
dmsans: ['DM Sans', 'sans-serif']
}
},
plugins: [],
}