-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (44 loc) · 1.05 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: [
"./app/views/**/*.erb",
"./app/javascript/controllers/**/*.js",
"./app/helpers/**/*.rb",
"./app/components/**/*.rb",
"./app/components/**/*.erb"
],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.blueGray,
indigo: colors.indigo,
red: colors.red,
yellow: colors.yellow,
pink: colors.pink,
rose: colors.rose,
lime: colors.lime,
green: colors.emerald,
teal: colors.teal,
purple: colors.purple,
cyan: colors.cyan,
blue: colors.lightBlue,
orange: colors.orange,
amber: colors.amber,
violet: colors.violet,
fuchsia: colors.fuchsia,
},
extend: {},
},
variants: {
extend: {},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
require("@tailwindcss/aspect-ratio"),
],
};