-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
83 lines (82 loc) · 1.74 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
80
81
82
83
import type { Config } from 'tailwindcss';
import { nextui } from '@nextui-org/react';
import { primary, defaultDark } from './src/utils/color';
export default {
content: [
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{js,ts,jsx,tsx}'
],
theme: {
fontFamily: {
benzin: ['Benzin', 'sans-serif']
},
extend: {
gridTemplateAreas: {
featuresWide: [
`leftTop leftTop centerTop centerTop centerTop right right`,
`leftBottom leftBottom leftBottom centerBottom centerBottom right right`
]
},
colors: {
primaryLight: '#effded',
'aquamarine-blue': {
'50': '#effcfc',
'100': '#d7f6f5',
'200': '#b3eeee',
'300': '#77dfe0',
'400': '#43cacd',
'500': '#27aeb3',
'600': '#238c97',
'700': '#23717b',
'800': '#245d66',
'900': '#224e57',
'950': '#12333a'
},
'lavender-magenta': {
'50': '#fdf4ff',
'100': '#f9e7ff',
'200': '#f5cfff',
'300': '#ed9cfe',
'400': '#e776fc',
'500': '#d842f3',
'600': '#bf21d8',
'700': '#a118b3',
'800': '#861692',
'900': '#701877',
'950': '#4a0250'
},
'pastel-green': {
'50': '#f0fdf5',
'100': '#dcfce8',
'200': '#bbf7d1',
'300': '#86efac',
'400': '#4ade80',
'500': '#22c55d',
'600': '#16a349',
'700': '#15803c',
'800': '#166533',
'900': '#14532b',
'950': '#052e14'
}
}
}
},
plugins: [
require('@savvywombat/tailwindcss-grid-areas'),
nextui({
themes: {
light: {
colors: {
background: '#ffffff',
foreground: '#000000',
primary: {
...primary,
foreground: '#ffffff'
},
default: defaultDark
}
}
}
})
]
} satisfies Config;