notebook/tailwind.config.js
2022-08-14 22:43:46 -07:00

53 lines
1.2 KiB
JavaScript

const colors = require('tailwindcss/colors');
module.exports = {
purge: [
'app/views/*/*.html.erb'
],
content: [],
theme: {
extend: {
colors: {
'notebook-blue': '#2196F3',
slate: colors.slate,
gray: colors.gray,
zinc: colors.zinc,
neutral: colors.neutral,
stone: colors.stone,
red: colors.red,
orange: colors.orange,
amber: colors.amber,
yellow: colors.yellow,
lime: colors.lime,
green: colors.green,
emerald: colors.emerald,
teal: colors.teal,
cyan: colors.cyan,
sky: colors.sky,
blue: colors.blue,
indigo: colors.indigo,
violet: colors.violet,
purple: colors.purple,
fuchsia: colors.fuchsia,
pink: colors.pink,
rose: colors.rose,
brown: {
50: '#fdf8f6',
100: '#f2e8e5',
200: '#eaddd7',
300: '#e0cec7',
400: '#d2bab0',
500: '#bfa094',
600: '#a18072',
700: '#977669',
800: '#846358',
900: '#43302b',
},
}
},
},
plugins: [
require('@tailwindcss/forms'),
],
}