-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
46 lines (43 loc) · 1.59 KB
/
tailwind.config.ts
File metadata and controls
46 lines (43 loc) · 1.59 KB
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
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: ["class"],
theme: {
extend: {
colors: {
primary: {
50: 'rgb(var(--primary-50) / <alpha-value>)',
100: 'rgb(var(--primary-100) / <alpha-value>)',
200: 'rgb(var(--primary-200) / <alpha-value>)',
300: 'rgb(var(--primary-300) / <alpha-value>)',
400: 'rgb(var(--primary-400) / <alpha-value>)',
500: 'rgb(var(--primary-500) / <alpha-value>)',
600: 'rgb(var(--primary-600) / <alpha-value>)',
700: 'rgb(var(--primary-700) / <alpha-value>)',
800: 'rgb(var(--primary-800) / <alpha-value>)',
900: 'rgb(var(--primary-900) / <alpha-value>)',
950: 'rgb(var(--primary-950) / <alpha-value>)',
},
secondary: {
50: '#f5f7fa',
100: '#ebeef3',
200: '#d2dae5',
300: '#aebccd',
400: '#8497b0',
500: '#657a95',
600: '#52637c',
700: '#435064',
800: '#3a4354',
900: '#333b47',
950: '#21252e',
},
},
},
},
plugins: [],
};
export default config;