aboutsummaryrefslogtreecommitdiff
path: root/pages/tailwind.config.js
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-14 00:14:12 +0700
committerFactiven <[email protected]>2023-04-14 00:14:12 +0700
commit70fda74d27d9b55c9030932794daa25c1e6cf50d (patch)
tree0c1f639be4e8ec1b960ba642b8e99c1485e83b1a /pages/tailwind.config.js
parentUpdate 5th (diff)
downloadmoopa-70fda74d27d9b55c9030932794daa25c1e6cf50d.tar.xz
moopa-70fda74d27d9b55c9030932794daa25c1e6cf50d.zip
Update 6th
Diffstat (limited to 'pages/tailwind.config.js')
-rw-r--r--pages/tailwind.config.js81
1 files changed, 0 insertions, 81 deletions
diff --git a/pages/tailwind.config.js b/pages/tailwind.config.js
deleted file mode 100644
index 066d8b7..0000000
--- a/pages/tailwind.config.js
+++ /dev/null
@@ -1,81 +0,0 @@
-/** @type {import('tailwindcss').Config} */
-const defaultTheme = require("tailwindcss/defaultTheme");
-const scrollbarPlugin = require("tailwind-scrollbar");
-
-module.exports = {
- content: [
- "./pages/**/*.{js,ts,jsx,tsx}",
- "./components/**/*.{js,ts,jsx,tsx}",
- ],
- darkMode: "class",
- theme: {
- screens: {
- xs: "475px",
- ...defaultTheme.screens,
- },
- extend: {
- animation: {
- text: "text 5s ease infinite",
- },
- keyframes: {
- text: {
- "0%, 100%": {
- "background-size": "200% 200%",
- "background-position": "left center",
- },
- "50%": {
- "background-size": "200% 200%",
- "background-position": "right center",
- },
- },
- },
- boxShadow: {
- menu: "0 0 10px 0px rgba(255, 107, 0, 0.1)",
- light: "0 2px 10px 2px rgba(0, 0, 0, 0.1)",
- button: "0 0px 5px 0.5px rgba(0, 0, 0, 0.1)",
- },
- textColor: {
- "gray-500": "#6c757d",
- },
- fontWeight: {
- bold: "700",
- },
- padding: {
- nav: "5.3rem",
- },
- colors: {
- primary: "#141519",
- secondary: "#202020",
- action: "#FF7F57",
- image: "#3B3C41",
- },
- },
- fontFamily: {
- rama: ["Ramabhadra", "sans-serif"],
- outfit: ["Outfit", "sans-serif"],
- karla: ["Karla", "sans-serif"],
- roboto: ["Roboto", "sans-serif"],
- inter: ["Inter", "sans-serif"],
- },
- },
- variants: {
- extend: {
- display: ["group-focus"],
- opacity: ["group-focus"],
- inset: ["group-focus"],
- backgroundImage: ["dark"],
- },
- textColor: ["responsive", "hover", "focus"],
- fontWeight: ["responsive", "hover", "focus"],
- scrollbar: ["rounded"],
- },
- plugins: [
- scrollbarPlugin({
- nocompatible: true,
- }),
- require("tailwind-scrollbar-hide"),
- require("vidstack/tailwind.cjs")({
- prefix: "media", // paused:... -> media-paused:...
- }),
- ],
-};