-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (47 loc) · 1.2 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
44
45
46
47
48
49
const colors = require("tailwindcss/colors");
const plugin = require("tailwindcss/plugin");
// Plugin for capitalizing only first letter
const capitalizeFirst = plugin(function ({ addUtilities }) {
const newUtilities = {
".capitalize-first:first-letter": {
textTransform: "uppercase",
},
};
addUtilities(newUtilities, ["responsive", "hover"]);
});
module.exports = {
purge: ["./frontend/src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
zIndex: {
"-1": "-1",
},
},
colors: {
"gr-start": "#fd746c",
"gr-end": "#ff9068",
"formgr-start": "#ff7e5f",
"formgr-end": "#feb47b",
"register-start": "#74ebd5",
"register-end": "#acb6e5",
transparent: "transparent",
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
emerald: colors.emerald,
green: colors.green,
purple: colors.violet,
blue: colors.blue,
orange: colors.orange,
teal: colors.teal,
},
},
variants: {
extend: {},
},
plugins: [capitalizeFirst],
};