-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 823 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 823 Bytes
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
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./source/**/*.html',
'./source/**/*.erb',
'./source/**/*.js',
'./components/**/*.rb'
],
theme: {
colors: {
transparent: 'transparent',
white: colors.white,
black: colors.black,
textgray: '#3f3f46',
gray: colors.gray,
red: colors.red,
green: {
default: '#54b848',
darker: '#3B9F2F',
dark: '#326f2b',
},
'border-gray': '#71717a',
neutral: '#171717'
},
extend: {
fontFamily: {
sans: ['Open Sans', 'sans-serif'],
black: ['Orbitron', 'sans-serif'],
bebas: ['Bebas Neue', 'sans-serif'],
},
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
};