mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
14 lines
194 B
JavaScript
14 lines
194 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
module.exports = {
|
|
content: [],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'notebook-blue': '#2196F3'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|