forked from semperai/amica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (31 loc) · 821 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (31 loc) · 821 Bytes
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
const { light, dark } = require("@charcoal-ui/theme");
/**
* @type {import('tailwindcss/tailwind-config').TailwindConfig}
*/
module.exports = {
darkMode: true,
content: ["./src/**/*.tsx", "./src/**/*.html"],
theme: {
extend: {
colors: {
primary: "#856292",
"primary-hover": "#8E76A1",
"primary-press": "#988BB0",
"primary-disabled": "#6F48694D",
secondary: "#FF617F",
"secondary-hover": "#FF849B",
"secondary-press": "#FF9EB1",
"secondary-disabled": "#FF617F4D",
base: "#FBE2CA",
"text-primary": "#514062",
},
fontFamily: {
M_PLUS_2: ["Montserrat", "M_PLUS_2", "sans-serif"],
Montserrat: ["Montserrat", "sans-serif"],
},
},
},
plugins: [
require('@tailwindcss/forms'),
],
};