-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
58 lines (50 loc) · 1.21 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
56
57
/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme'
export default {
content: [
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/views/**/*.{html,html.erb,erb}',
'./app/frontend/components/**/*.{js,vue}',
'./app/frontend/pages/**/*.{js,vue}',
],
theme: {
extend: {
colors: {
'dg-green': {
DEFAULT: '#009859',
50: '#ebfef3',
100: '#d0fbe1',
200: '#a4f6c7',
300: '#6aebab',
400: '#2fd888',
500: '#0abf70',
600: '#009859',
700: '#007c4c',
800: '#03623d',
900: '#045034',
950: '#012d1e'
},
smoke: '#231f20'
},
fontFamily: {
sans: [
'"Inter", sans-serif',
{
fontFeatureSettings: '"liga" 1, "calt" 1',
fontVariationSettings: '"slnt" 0'
}
],
serif: ['Courier Prime', ...defaultTheme.fontFamily.serif]
}
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}