mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-06-28 12:19:11 +00:00
Initial commit for working landing page
This commit is contained in:
parent
f3fecc77c5
commit
439b6eabe8
36 changed files with 9186 additions and 0 deletions
66
tailwind.config.js
Normal file
66
tailwind.config.js
Normal file
|
@ -0,0 +1,66 @@
|
|||
const { fontFamily } = require("tailwindcss/defaultTheme");
|
||||
const colors = require("tailwindcss/colors");
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
darkMode: ["class"],
|
||||
content: ["app/**/*.{ts,tsx}", "components/**/*.{ts,tsx}", "content/**/*.mdx"],
|
||||
theme: {
|
||||
container: {
|
||||
center: true,
|
||||
padding: "1.5rem",
|
||||
screens: {
|
||||
"2xl": "1440px",
|
||||
},
|
||||
},
|
||||
extend: {
|
||||
colors: {
|
||||
primary: colors.zinc,
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ["var(--font-inter)", ...fontFamily.sans],
|
||||
display: ["var(--font-calsans)"],
|
||||
},
|
||||
|
||||
backgroundImage: {
|
||||
"gradient-conic": "conic-gradient(var(--conic-position), var(--tw-gradient-stops))",
|
||||
"gradient-radial-top": "radial-gradient(100% 60% at 100% 0%, var(--tw-gradient-stops))",
|
||||
},
|
||||
keyframes: {
|
||||
"accordion-down": {
|
||||
from: { height: 0 },
|
||||
to: { height: "var(--radix-accordion-content-height)" },
|
||||
},
|
||||
"accordion-up": {
|
||||
from: { height: "var(--radix-accordion-content-height)" },
|
||||
to: { height: 0 },
|
||||
},
|
||||
disco: {
|
||||
"0%": { transform: "translateY(-50%) rotate(0deg)" },
|
||||
"100%": { transform: "translateY(-50%) rotate(360deg)" },
|
||||
},
|
||||
spin: {
|
||||
from: {
|
||||
transform: "rotate(0deg)",
|
||||
},
|
||||
to: {
|
||||
transform: "rotate(360deg)",
|
||||
},
|
||||
},
|
||||
endless: {
|
||||
"0%": { transform: "translateY(0)" },
|
||||
"100%": { transform: "translateY(-245px)" },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
endless: "endless 20s linear infinite",
|
||||
|
||||
"accordion-down": "accordion-down 0.2s ease-out",
|
||||
"accordion-up": "accordion-up 0.2s ease-out",
|
||||
disco: "disco 1.5s linear infinite",
|
||||
"spin-forward": "spin 2s linear infinite",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [require("tailwindcss-animate"), require("@tailwindcss/forms")],
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue