mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
54 lines
1.2 KiB
JavaScript
54 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'),
|
|
require('@tailwindcss/line-clamp'),
|
|
],
|
|
}
|