-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 857 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 857 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
32
33
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
colors: {
primary: {
100: "#FBC495",
200: "#FDA855",
},
secondary: {
100: "#BDD6D0",
200: "#29C5E6",
300: "#0180AB",
},
},
fontFamily: {
body: ["Rubik"],
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("tailwind-scrollbar"),
require("@tailwindcss/line-clamp"),
{
"postcss-import": {},
"tailwindcss/nesting": "postcss-nesting",
tailwindcss: {},
autoprefixer: {},
},
],
};