-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 1.04 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
module.exports = {
content: [
"./app/views/**/*.html.erb",
"./app/helpers/**/*.rb",
"./app/assets/stylesheets/**/*.{css,scss}",
"./app/javascript/**/*.{js,jsx}"
],
theme: {
fontFamily: {
"sans": ["Roboto", "sans-serif"],
"serif": ["'Roboto Slab'", "serif"],
"mono": ["'Roboto Mono'", "monospace"],
"rock-salt": ["'Rock Salt'", "cursive"]
},
extend: {
backgroundImage: {
"circuit-board-light": "url('bg-circuit-board-light.svg')",
"circuit-board-dark": "url('bg-circuit-board-dark.svg')",
},
transitionProperty: {
"height": "height",
"max-height": "max-height"
},
typography: (theme) => ({
DEFAULT: {
css: {
a: {
textDecoration: "none",
color: theme("colors.blue.500"),
"&:hover": {
color: theme("colors.blue.600")
},
},
},
},
}),
},
},
plugins: [
require("@tailwindcss/typography"),
],
}