-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
55 lines (53 loc) · 1.23 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
50
51
52
53
54
55
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'class',
theme: {
fontFamily: {
sans: ["'DM Sans'", 'sans-serif'],
serif: ["'DM Sans'", 'sans-serif'],
},
extend: {
colorsDisabled: {
cyan: '#9cdbff',
//gray: grayColors,
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.zinc,
indigo: colors.indigo,
red: colors.rose,
green: colors.emerald,
yellow: colors.amber,
brand: {
50: "#fdf2f8",
100: "#fce7f3",
200: "#fbcfe8",
300: "#f9a8d4",
400: "#f472b6",
500: "#ec4899",
600: "#db2777",
700: "#be185d",
800: "#9d174d",
900: "#831843",
950: "#500724"
}
}
}
},
content: [
"./**/*.erb",
'./app/views/**/*.html.erb',
'./app/views/**/*.erb',
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js'
],
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
]
}