mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
14 lines
269 B
JavaScript
14 lines
269 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"paper": "#F2F0E3",
|
|
"coral": "#F76F53",
|
|
"dark": "#202020",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|