mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
Feat: add Tailwind CSS and Prettier configuration, create reusable components for Title, Description, and Button
This commit is contained in:
parent
7bb60fdf2a
commit
8612d6da90
11 changed files with 1384 additions and 227 deletions
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: [],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue