mirror of
https://github.com/DeveloLongScript/MHSF.git
synced 2026-05-08 00:44:59 -05:00
215 lines
6.4 KiB
TypeScript
215 lines
6.4 KiB
TypeScript
|
|
/*
|
||
|
|
* MHSF, Minehut Server List
|
||
|
|
*
|
||
|
|
* All code under MHSF is licensed under the MIT License
|
||
|
|
* by open source contributors
|
||
|
|
*
|
||
|
|
* Copyright (c) 2025 dvelo
|
||
|
|
*
|
||
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
|
* of this software and associated documentation files (the "Software"), to
|
||
|
|
* deal in the Software without restriction, including without limitation the
|
||
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
||
|
|
* furnished to do so, subject to the following conditions:
|
||
|
|
*
|
||
|
|
* The above copyright notice and this permission notice shall be included in all
|
||
|
|
* copies or substantial portions of the Software.
|
||
|
|
*
|
||
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||
|
|
*/
|
||
|
|
|
||
|
|
import type { Config } from "tailwindcss";
|
||
|
|
|
||
|
|
const config = {
|
||
|
|
darkMode: ["class"],
|
||
|
|
content: [
|
||
|
|
"./pages/**/*.{ts,tsx}",
|
||
|
|
"./components/**/*.{ts,tsx}",
|
||
|
|
"./app/**/*.{ts,tsx}",
|
||
|
|
"./src/**/*.{ts,tsx,json}",
|
||
|
|
],
|
||
|
|
prefix: "",
|
||
|
|
theme: {
|
||
|
|
container: {
|
||
|
|
center: true,
|
||
|
|
padding: "2rem",
|
||
|
|
screens: {
|
||
|
|
"2xl": "1400px",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
border: "hsl(var(--border))",
|
||
|
|
input: "hsl(var(--input))",
|
||
|
|
ring: "hsl(var(--ring))",
|
||
|
|
background: "hsl(var(--background))",
|
||
|
|
foreground: "hsl(var(--foreground))",
|
||
|
|
primary: {
|
||
|
|
DEFAULT: "hsl(var(--primary))",
|
||
|
|
foreground: "hsl(var(--primary-foreground))",
|
||
|
|
},
|
||
|
|
secondary: {
|
||
|
|
DEFAULT: "hsl(var(--secondary))",
|
||
|
|
foreground: "hsl(var(--secondary-foreground))",
|
||
|
|
},
|
||
|
|
destructive: {
|
||
|
|
DEFAULT: "hsl(var(--destructive))",
|
||
|
|
foreground: "hsl(var(--destructive-foreground))",
|
||
|
|
},
|
||
|
|
muted: {
|
||
|
|
DEFAULT: "hsl(var(--muted))",
|
||
|
|
foreground: "hsl(var(--muted-foreground))",
|
||
|
|
},
|
||
|
|
accent: {
|
||
|
|
DEFAULT: "hsl(var(--accent))",
|
||
|
|
foreground: "hsl(var(--accent-foreground))",
|
||
|
|
},
|
||
|
|
popover: {
|
||
|
|
DEFAULT: "hsl(var(--popover))",
|
||
|
|
foreground: "hsl(var(--popover-foreground))",
|
||
|
|
},
|
||
|
|
card: {
|
||
|
|
DEFAULT: "hsl(var(--card))",
|
||
|
|
foreground: "hsl(var(--card-foreground))",
|
||
|
|
},
|
||
|
|
sidebar: {
|
||
|
|
DEFAULT: "hsl(var(--sidebar-background))",
|
||
|
|
foreground: "hsl(var(--sidebar-foreground))",
|
||
|
|
primary: "hsl(var(--sidebar-primary))",
|
||
|
|
"primary-foreground": "hsl(var(--sidebar-primary-foreground))",
|
||
|
|
accent: "hsl(var(--sidebar-accent))",
|
||
|
|
"accent-foreground": "hsl(var(--sidebar-accent-foreground))",
|
||
|
|
border: "hsl(var(--sidebar-border))",
|
||
|
|
ring: "hsl(var(--sidebar-ring))",
|
||
|
|
mhsf: "hsl(var(--sidebar-mhsf))",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
borderRadius: {
|
||
|
|
lg: "var(--radius)",
|
||
|
|
md: "calc(var(--radius) - 2px)",
|
||
|
|
sm: "calc(var(--radius) - 4px)",
|
||
|
|
},
|
||
|
|
keyframes: {
|
||
|
|
"image-glow": {
|
||
|
|
"0%": {
|
||
|
|
opacity: "0",
|
||
|
|
"animation-timing-function": "cubic-bezier(0.74, 0.25, 0.76, 1)",
|
||
|
|
},
|
||
|
|
"10%": {
|
||
|
|
opacity: "0.7",
|
||
|
|
"animation-timing-function": "cubic-bezier(0.12, 0.01, 0.08, 0.99)",
|
||
|
|
},
|
||
|
|
"100%": {
|
||
|
|
opacity: "0.4",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"border-beam": {
|
||
|
|
"100%": {
|
||
|
|
"offset-distance": "100%",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"caret-blink": {
|
||
|
|
"0%,70%,100%": {
|
||
|
|
opacity: "1",
|
||
|
|
},
|
||
|
|
"20%,50%": {
|
||
|
|
opacity: "0",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"accordion-down": {
|
||
|
|
from: {
|
||
|
|
height: "0",
|
||
|
|
},
|
||
|
|
to: {
|
||
|
|
height: "var(--radix-accordion-content-height)",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"accordion-up": {
|
||
|
|
from: {
|
||
|
|
height: "var(--radix-accordion-content-height)",
|
||
|
|
},
|
||
|
|
to: {
|
||
|
|
height: "0",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"fade-in": {
|
||
|
|
from: {
|
||
|
|
opacity: "0",
|
||
|
|
transform: "translateY(-10px)",
|
||
|
|
},
|
||
|
|
to: {
|
||
|
|
opacity: "1",
|
||
|
|
transform: "none",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
marquee: {
|
||
|
|
from: {
|
||
|
|
transform: "translateX(0)",
|
||
|
|
},
|
||
|
|
to: {
|
||
|
|
transform: "translateX(calc(-100% - var(--gap)))",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"marquee-vertical": {
|
||
|
|
from: {
|
||
|
|
transform: "translateY(0)",
|
||
|
|
},
|
||
|
|
to: {
|
||
|
|
transform: "translateY(calc(-100% - var(--gap)))",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
"fade-up": {
|
||
|
|
from: {
|
||
|
|
opacity: "0",
|
||
|
|
transform: "translateY(20px)",
|
||
|
|
},
|
||
|
|
to: {
|
||
|
|
opacity: "1",
|
||
|
|
transform: "none",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
spinner: {
|
||
|
|
"0%": {
|
||
|
|
opacity: "1",
|
||
|
|
},
|
||
|
|
"100%": {
|
||
|
|
opacity: "0",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
shimmer: {
|
||
|
|
"0%, 90%, 100%": {
|
||
|
|
"background-position": "calc(-100% - var(--shimmer-width)) 0",
|
||
|
|
},
|
||
|
|
"30%, 60%": {
|
||
|
|
"background-position": "calc(100% + var(--shimmer-width)) 0",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
animation: {
|
||
|
|
marquee: "marquee var(--duration) linear infinite",
|
||
|
|
"marquee-vertical": "marquee-vertical var(--duration) linear infinite",
|
||
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
||
|
|
"accordion-up": "accordion-up 0.2s ease-out",
|
||
|
|
"image-glow": "image-glow 4100ms 600ms ease-out forwards",
|
||
|
|
shimmer: "shimmer 8s infinite",
|
||
|
|
spinner: "spinner 1.2s linear infinite",
|
||
|
|
"fade-in": "fade-in 1000ms var(--animation-delay, 0ms) ease forwards",
|
||
|
|
"caret-blink": "caret-blink 1.25s ease-out infinite",
|
||
|
|
"border-beam": "border-beam calc(var(--duration)*1s) infinite linear",
|
||
|
|
"fade-up": "fade-up 1000ms var(--animation-delay, 0ms) ease forwards",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
|
||
|
|
} satisfies Config;
|
||
|
|
|
||
|
|
export default config;
|