-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
71 lines (70 loc) · 1.72 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
import type { Config } from 'tailwindcss'
import { fontFamily } from 'tailwindcss/defaultTheme'
const config: Config = {
content: [
// "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
extend: {
colors: {
'primary-100': '#372744',
'primary-200': '#BC6FF1',
'accent-100': '#D9ACF5',
'accent-200': '#fff4ff',
'text-100': '#EEEEEE',
'text-200': '#FDEBED',
'bg-200': '#393E46',
'bg-300': '#454e59',
},
screens: {
xs: '200px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1536px',
// xs: '280px',
// sm: '540px',
// md: '768px',
// lg: '991px',
// xl: '1024px',
// xxl: '1140px',
// xxxl: '1440px',
},
borderRadius: {
// lg: 'var(--radius)',
// md: 'calc(var(--radius) - 2px)',
// sm: 'calc(var(--radius) - 4px)',
none: '0',
sm: '0.125rem',
DEFAULT: '0.25rem',
md: '0.375rem',
lg: '0.5rem',
full: '9999px',
large: '12px',
},
fontFamily: {
sans: ['var(--font-sans)', ...fontFamily.sans],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
darkMode: ['class', '[data-theme="dark"]'],
}
export default config