-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (42 loc) · 1.31 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
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{html,md,liquid,erb,serb,rb}',
'./frontend/javascript/**/*.js',
'./node_modules/tailwind-stimulus-components/src/*.js',
'./node_modules/flowbite/**/*.js'
],
// All the default values will be compiled unless they are overridden below
theme: {
// Extend (add to) the default theme in the `extend` key
extend: {
// Create your own at: https://javisperez.github.io/tailwindcolorshades
colors: {
primary: colors.blue,
secondary: colors.emerald,
tertiary: colors.gray,
danger: colors.red,
teal: colors.teal,
cyan: colors.cyan,
"semisto-1": "#927AA3",
"semisto-2": "#B36189",
"semisto-3": "#D85965",
"semisto-4": "#434771",
"semisto-5": "#CFB51C"
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
serif: ['Vesper Libre', ...defaultTheme.fontFamily.serif]
},
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
require('flowbite/plugin'),
],
}