-
Notifications
You must be signed in to change notification settings - Fork 50
/
tailwind.config.js
35 lines (34 loc) · 1.01 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
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
"./app/views/Publisher/**/*.scala.html",
"./app/views/RestAPI/**/*.scala.html",
"./app/views/tags/publisher/**.scala.html",
"./app/views/Application/index.scala.html",
"./public/js/*.js"
],
theme: {
extend: {
colors: {
'dvx-white': '#E9E2DB',
'dvx-mainback': '#010101',
'dvx-back': '#312525',
'dvx-orange': '#E2A86E',
'dvx-accent': '#F88224',
'dvx-border': '#00ff18',
'dvx-box': '#121212'
},
},
fontFamily: {
sans: ['Open Sans', ...defaultTheme.fontFamily.sans],
serif: ['Aldrich', 'serif'],
mono: ['Big Shoulders Inline Display', ...defaultTheme.fontFamily.mono],
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio')
],
}