-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
79 lines (78 loc) · 1.95 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
const colors = require('tailwindcss/colors');
const config: Config = {
darkMode: 'selector',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1024px',
'2xl': '1400px',
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
indigo: {
dark: '#1544e4',
DEFAULT: '#345dec',
},
darkblue: {
'50': '#e6e7f1',
'100': '#ccd0e2',
'200': '#99a0c5',
'300': '#6671a8',
'400': '#33418b',
'500': '#00126e',
'600': '#000e58',
'700': '#000b42',
'800': '#00072c',
'900': '#000416',
},
},
container: {
center: true,
padding: {
DEFAULT: '16px',
sm: '16px',
lg: '20px',
xl: '20px',
'2xl': '20px',
},
screens: {
sm: '960px',
md: '960px',
lg: '984px',
xl: '1140px',
'2xl': '1140px',
},
},
letterSpacing: {
tighter: '-.05em',
tight: '-0.01em',
normal: '0',
wide: '.025em',
wider: '.05em',
widest: '.1em',
},
backgroundImage: {
hamburger: `url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")`,
},
},
plugins: [],
};
export default config;