Initial landing page
This commit is contained in:
27
tailwind.config.js
Normal file
27
tailwind.config.js
Normal file
@@ -0,0 +1,27 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{html,njk,md,js}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
ink: "#071323",
|
||||
muted: "#637083",
|
||||
paper: "#f7f8fc",
|
||||
line: "#dde3ed",
|
||||
flame: "#f97316",
|
||||
ember: "#b94700",
|
||||
azure: "#006ee6",
|
||||
navy: "#061832"
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"],
|
||||
display: ["Rajdhani", "Inter", "ui-sans-serif", "system-ui", "sans-serif"]
|
||||
},
|
||||
boxShadow: {
|
||||
soft: "0 18px 50px rgba(15, 35, 63, 0.12)",
|
||||
panel: "0 22px 70px rgba(6, 24, 50, 0.22)"
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
Reference in New Issue
Block a user