mirror of
https://github.com/zen-browser/www
synced 2026-04-25 17:14:56 +02:00
Feat: add Tailwind CSS and Prettier configuration, create reusable components for Title, Description, and Button
This commit is contained in:
14
tailwind.config.mjs
Normal file
14
tailwind.config.mjs
Normal file
@@ -0,0 +1,14 @@
|
||||
/** @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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user