-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
53 lines (52 loc) · 1.36 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
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'
const config: Config = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx}', // Include files in src/app
'./src/components/**/*.{js,ts,jsx,tsx}', // Optionally include other directories
],
theme: {
extend: {
colors: {
cbBlue: {
1: '#7efde3',
2: '#29d3fe',
3: '#0087a9',
4: '#08afde',
5: '#26b7e1',
6: '#09afdf',
},
background: 'var(--background)',
foreground: 'var(--foreground)',
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
grey: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
green: colors.emerald,
purple: colors.violet,
pink: colors.fuchsia,
teal: colors.teal,
red: colors.red,
blue: colors.blue,
cyan: colors.cyan,
orange: colors.orange,
lime: colors.lime,
amber: colors.amber,
rose: colors.rose,
stone: colors.stone,
neutral: colors.neutral,
slate: colors.slate,
zinc: colors.zinc,
sky: colors.sky,
fuchsia: colors.fuchsia,
},
},
},
plugins: [],
}
export default config