-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 1011 Bytes
/
tailwind.config.js
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
/* eslint-disable */
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{js,jsx,ts,tsx}'
],
theme: {
extend: {
colors: {
primary: {
50: "#f1e6f0",
100: "#ddc1dc",
200: "#c79ac5",
300: "#b074ad",
400: "#9f5a9c",
500: "#8e458c",
600: "#834085",
700: "#73387c",
800: "#653371",
900: "#4b2a5d"
},
secondary: {
50: "#f2e6e4",
100: "#eac4b6",
200: "#dd9f87",
300: "#d37b57",
400: "#ce6030",
500: "#c84702",
600: "#bf4200",
700: "#b33c00",
800: "#a53500",
900: "#8e2800"
}
},
fontFamily: {
sans: ['Inter' ,'sans-serif'],
},
backgroundImage: {
}
},
},
variants: {
extend: {
opacity: ['disabled'],
cursor: ['disabled'],
}
},
plugins: [
]
}