-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (40 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./public/*.html',
'./app/helpers/**/*.rb',
'./app/javascript/**/*.{js,jsx,ts,tsx,vue}',
'./app/views/**/*.{html,html.erb,erb}',
'./app/frontend/**/*.{js,jsx,ts,tsx,svelte,vue}',
],
theme: {
extend: {
fontFamily: {
sans: ['Righteous', ...defaultTheme.fontFamily.sans],
},
borderRadius: {
'dft-input': '20px'
},
colors: {
'dft-white': '#FFFFFF',
'dft-black': '#000000',
'dft-grey': '#3a3a3a', // Dark grey
'dft-primary': '#F196F9', // Candy pink
'dft-secondary': '#90F8FF', // Light blue
'dft-secondary-dimmed': '#68D5DC',
'dft-accent': '#FF6584', // Coral
'dft-error': '#FF6584', // Error (Coral)
}
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/container-queries'),
require('@tailwindcss/aspect-ratio')
]
}