mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 05:18:58 +00:00
24 lines
430 B
JavaScript
24 lines
430 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./resources/jte/**/*.jte",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
nicotine: '#f8f8ee',
|
|
margeblue: '#3e5f6f',
|
|
liteblue: '#0066cc',
|
|
}
|
|
},
|
|
screens: {
|
|
'xs': '440px',
|
|
'sm': '640px',
|
|
'md': '768px',
|
|
'lg': '1024px',
|
|
'xl': '1280px',
|
|
'2xl': '1536px',
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |