notebook/tailwind.config.js

14 lines
194 B
JavaScript

const colors = require('tailwindcss/colors');
module.exports = {
content: [],
theme: {
extend: {
colors: {
'notebook-blue': '#2196F3'
}
},
},
plugins: [],
}