-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
44 lines (43 loc) · 1.24 KB
/
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
/** @type {import('tailwindcss').Config} */
const flowbitePlugin = require("flowbite/plugin");
const formsPlugin = require("@tailwindcss/forms");
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./node_modules/flowbite/**/*.js",
],
theme: {
extend: {
fontFamily: {
car: ["Rubik"],
},
colors: {
pr: {
100: "#fff5e6",
200: "#ffd799",
300: "#ffc366",
400: "#ff9b00",
500: "#e68c00",
600: "#e68c00",
700: "#cc7c00",
800: "#b36d00",
900: "#995d00",
},
sec: {
100: "#fafafa",
200: "#ffd799",
300: "#f7f7f8",
400: "#f5f5f6",
500: "#dddddd",
600: "#eeeeee",
700: "#c4c4c4",
800: "#acacac",
900: "#acacac",
},
},
},
},
plugins: [flowbitePlugin, formsPlugin,],
};