-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (57 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/api/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/data/**/*.json',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./*.{js,ts,jsx,tsx,mdx}',
],
theme: {
container: {
padding: {
DEFAULT: '15px',
},
},
screens: {
xs: '425px',
sm: '640px',
md: '768px',
lg: '960px',
xl: '1200px',
},
extend: {
colors: {
primary: '#CEC9C1',
secondary: '#98B9F2',
tertiary: '#4C8BD9',
accent: '#003366',
blueDark: '#001f33',
blueMedium: '#004080',
blueLight: '#005cbf',
blueExtraLight: '#007acc'
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
animation: {
'spin-slow': 'spin 6s linear infinite',
'spin-reverse': 'spin-reverse 1s linear infinite',
},
keyframes: {
'spin-reverse': {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(-360deg)' },
},
},
},
},
container: {
padding: {
DEFAULT: '15px',
},
},
plugins: [],
}