From 6a738af3ae8676c37e1f186307d4b0fc760321af Mon Sep 17 00:00:00 2001 From: Jasen Qin Date: Mon, 20 May 2024 07:53:20 +1000 Subject: [PATCH] autocommit 20-05-2024-07-53 --- .../page.tsx} | 2 - .../app/{theme.ts => chakra-theme.ts} | 12 +- pos-frontend/app/database.ts | 11 - pos-frontend/app/fonts.ts | 10 - pos-frontend/app/nextui-provider.tsx | 9 - pos-frontend/app/tailwind.css | 800 ------------------ 6 files changed, 11 insertions(+), 833 deletions(-) rename pos-frontend/app/{page--react--bootstrap.tsx => alt/page.tsx} (98%) rename pos-frontend/app/{theme.ts => chakra-theme.ts} (51%) delete mode 100644 pos-frontend/app/fonts.ts delete mode 100644 pos-frontend/app/nextui-provider.tsx delete mode 100644 pos-frontend/app/tailwind.css diff --git a/pos-frontend/app/page--react--bootstrap.tsx b/pos-frontend/app/alt/page.tsx similarity index 98% rename from pos-frontend/app/page--react--bootstrap.tsx rename to pos-frontend/app/alt/page.tsx index 8f5c87e..df21c5f 100644 --- a/pos-frontend/app/page--react--bootstrap.tsx +++ b/pos-frontend/app/alt/page.tsx @@ -1,5 +1,3 @@ -// "use client" - import React from "react" import { Button, Nav, Stack } from "react-bootstrap" import 'bootstrap/dist/css/bootstrap.min.css' diff --git a/pos-frontend/app/theme.ts b/pos-frontend/app/chakra-theme.ts similarity index 51% rename from pos-frontend/app/theme.ts rename to pos-frontend/app/chakra-theme.ts index eb41d4b..168d2ad 100644 --- a/pos-frontend/app/theme.ts +++ b/pos-frontend/app/chakra-theme.ts @@ -1,8 +1,18 @@ import { extendTheme } from "@chakra-ui/react" +import { Rubik } from 'next/font/google' export const theme = extendTheme({ fonts: { heading: 'var(--font-rubik)', body: 'var(--font-rubik)', } -}) \ No newline at end of file +}) + +const rubik = Rubik({ + subsets: ['latin'], + variable: '--font-rubik', +}) + +export const fonts = { + rubik, +} diff --git a/pos-frontend/app/database.ts b/pos-frontend/app/database.ts index a597025..6e1a4b7 100644 --- a/pos-frontend/app/database.ts +++ b/pos-frontend/app/database.ts @@ -17,11 +17,8 @@ interface CSVDatabase2 { } export function create_csv_database(filepath: string): CSVDatabase2 { - // let df = DataFrame([], { columns: ["key", "value"] }) let df = DataFrame({ 'a_key': ['1'], 'a_value': ['2'] }) - // writeFile(filepath, 'key,value\nheader,next', () => { }) - // let df = pl.readCSV(filepath) df.writeCSV(filepath) return { df, filepath } @@ -40,14 +37,6 @@ export function print_head(db: CSVDatabase2) { console.log(db.df.head()) } -// can filter everything that is not the row, and do to db - -export function delete_row_by_key__({ df, filepath }: CSVDatabase2, key: string) { - // db.df.drop(pl.col("key").eq(key)) - // df = df.select((pl.col("key") != key).alias("nrs > 1")) - // db.df = db.df.filter(pl.col("key").neq(key)) -} - export function delete_row_by_key(db: CSVDatabase2, key: string) { console.log("NEXT COLUMNS") console.log(db.df.columns) diff --git a/pos-frontend/app/fonts.ts b/pos-frontend/app/fonts.ts deleted file mode 100644 index 271372f..0000000 --- a/pos-frontend/app/fonts.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Rubik } from 'next/font/google' - -const rubik = Rubik({ - subsets: ['latin'], - variable: '--font-rubik', -}) - -export const fonts = { - rubik, -} \ No newline at end of file diff --git a/pos-frontend/app/nextui-provider.tsx b/pos-frontend/app/nextui-provider.tsx deleted file mode 100644 index f170b04..0000000 --- a/pos-frontend/app/nextui-provider.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import { NextUIProvider } from '@nextui-org/react' - -export function Providers({ children }: { children: React.ReactNode }) { - return ( - - {children} - - ) -} diff --git a/pos-frontend/app/tailwind.css b/pos-frontend/app/tailwind.css deleted file mode 100644 index 23e53bc..0000000 --- a/pos-frontend/app/tailwind.css +++ /dev/null @@ -1,800 +0,0 @@ -/* -! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com -*/ - -/* -1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) -2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) -*/ - -*, -::before, -::after { - box-sizing: border-box; - /* 1 */ - border-width: 0; - /* 2 */ - border-style: solid; - /* 2 */ - border-color: #e5e7eb; - /* 2 */ -} - -::before, -::after { - --tw-content: ''; -} - -/* -1. Use a consistent sensible line-height in all browsers. -2. Prevent adjustments of font size after orientation changes in iOS. -3. Use a more readable tab size. -4. Use the user's configured `sans` font-family by default. -5. Use the user's configured `sans` font-feature-settings by default. -6. Use the user's configured `sans` font-variation-settings by default. -7. Disable tap highlights on iOS -*/ - -html, -:host { - line-height: 1.5; - /* 1 */ - -webkit-text-size-adjust: 100%; - /* 2 */ - -moz-tab-size: 4; - /* 3 */ - -o-tab-size: 4; - tab-size: 4; - /* 3 */ - font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - /* 4 */ - font-feature-settings: normal; - /* 5 */ - font-variation-settings: normal; - /* 6 */ - -webkit-tap-highlight-color: transparent; - /* 7 */ -} - -/* -1. Remove the margin in all browsers. -2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. -*/ - -body { - margin: 0; - /* 1 */ - line-height: inherit; - /* 2 */ -} - -/* -1. Add the correct height in Firefox. -2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) -3. Ensure horizontal rules are visible by default. -*/ - -hr { - height: 0; - /* 1 */ - color: inherit; - /* 2 */ - border-top-width: 1px; - /* 3 */ -} - -/* -Add the correct text decoration in Chrome, Edge, and Safari. -*/ - -abbr:where([title]) { - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; -} - -/* -Remove the default font size and weight for headings. -*/ - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: inherit; - font-weight: inherit; -} - -/* -Reset links to optimize for opt-in styling instead of opt-out. -*/ - -a { - color: inherit; - text-decoration: inherit; -} - -/* -Add the correct font weight in Edge and Safari. -*/ - -b, -strong { - font-weight: bolder; -} - -/* -1. Use the user's configured `mono` font-family by default. -2. Use the user's configured `mono` font-feature-settings by default. -3. Use the user's configured `mono` font-variation-settings by default. -4. Correct the odd `em` font sizing in all browsers. -*/ - -code, -kbd, -samp, -pre { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - /* 1 */ - font-feature-settings: normal; - /* 2 */ - font-variation-settings: normal; - /* 3 */ - font-size: 1em; - /* 4 */ -} - -/* -Add the correct font size in all browsers. -*/ - -small { - font-size: 80%; -} - -/* -Prevent `sub` and `sup` elements from affecting the line height in all browsers. -*/ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* -1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) -2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) -3. Remove gaps between table borders by default. -*/ - -table { - text-indent: 0; - /* 1 */ - border-color: inherit; - /* 2 */ - border-collapse: collapse; - /* 3 */ -} - -/* -1. Change the font styles in all browsers. -2. Remove the margin in Firefox and Safari. -3. Remove default padding in all browsers. -*/ - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; - /* 1 */ - font-feature-settings: inherit; - /* 1 */ - font-variation-settings: inherit; - /* 1 */ - font-size: 100%; - /* 1 */ - font-weight: inherit; - /* 1 */ - line-height: inherit; - /* 1 */ - letter-spacing: inherit; - /* 1 */ - color: inherit; - /* 1 */ - margin: 0; - /* 2 */ - padding: 0; - /* 3 */ -} - -/* -Remove the inheritance of text transform in Edge and Firefox. -*/ - -button, -select { - text-transform: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Remove default button styles. -*/ - -button, -input:where([type='button']), -input:where([type='reset']), -input:where([type='submit']) { - -webkit-appearance: button; - /* 1 */ - background-color: transparent; - /* 2 */ - background-image: none; - /* 2 */ -} - -/* -Use the modern Firefox focus style for all focusable elements. -*/ - -:-moz-focusring { - outline: auto; -} - -/* -Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) -*/ - -:-moz-ui-invalid { - box-shadow: none; -} - -/* -Add the correct vertical alignment in Chrome and Firefox. -*/ - -progress { - vertical-align: baseline; -} - -/* -Correct the cursor style of increment and decrement buttons in Safari. -*/ - -::-webkit-inner-spin-button, -::-webkit-outer-spin-button { - height: auto; -} - -/* -1. Correct the odd appearance in Chrome and Safari. -2. Correct the outline style in Safari. -*/ - -[type='search'] { - -webkit-appearance: textfield; - /* 1 */ - outline-offset: -2px; - /* 2 */ -} - -/* -Remove the inner padding in Chrome and Safari on macOS. -*/ - -::-webkit-search-decoration { - -webkit-appearance: none; -} - -/* -1. Correct the inability to style clickable types in iOS and Safari. -2. Change font properties to `inherit` in Safari. -*/ - -::-webkit-file-upload-button { - -webkit-appearance: button; - /* 1 */ - font: inherit; - /* 2 */ -} - -/* -Add the correct display in Chrome and Safari. -*/ - -summary { - display: list-item; -} - -/* -Removes the default spacing and border for appropriate elements. -*/ - -blockquote, -dl, -dd, -h1, -h2, -h3, -h4, -h5, -h6, -hr, -figure, -p, -pre { - margin: 0; -} - -fieldset { - margin: 0; - padding: 0; -} - -legend { - padding: 0; -} - -ol, -ul, -menu { - list-style: none; - margin: 0; - padding: 0; -} - -/* -Reset default styling for dialogs. -*/ - -dialog { - padding: 0; -} - -/* -Prevent resizing textareas horizontally by default. -*/ - -textarea { - resize: vertical; -} - -/* -1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) -2. Set the default placeholder color to the user's configured gray 400 color. -*/ - -input::-moz-placeholder, textarea::-moz-placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -input::placeholder, -textarea::placeholder { - opacity: 1; - /* 1 */ - color: #9ca3af; - /* 2 */ -} - -/* -Set the default cursor for buttons. -*/ - -button, -[role="button"] { - cursor: pointer; -} - -/* -Make sure disabled buttons don't get the pointer cursor. -*/ - -:disabled { - cursor: default; -} - -/* -1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) -2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) - This can trigger a poorly considered lint error in some tools but is included by design. -*/ - -img, -svg, -video, -canvas, -audio, -iframe, -embed, -object { - display: block; - /* 1 */ - vertical-align: middle; - /* 2 */ -} - -/* -Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) -*/ - -img, -video { - max-width: 100%; - height: auto; -} - -/* Make elements with the HTML hidden attribute stay hidden by default */ - -[hidden] { - display: none; -} - -:root, [data-theme] { - color: hsl(var(--nextui-foreground)); - background-color: hsl(var(--nextui-background)); -} - -*, ::before, ::after { - --tw-border-spacing-x: 0; - --tw-border-spacing-y: 0; - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-pan-x: ; - --tw-pan-y: ; - --tw-pinch-zoom: ; - --tw-scroll-snap-strictness: proximity; - --tw-gradient-from-position: ; - --tw-gradient-via-position: ; - --tw-gradient-to-position: ; - --tw-ordinal: ; - --tw-slashed-zero: ; - --tw-numeric-figure: ; - --tw-numeric-spacing: ; - --tw-numeric-fraction: ; - --tw-ring-inset: ; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgb(59 130 246 / 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - --tw-blur: ; - --tw-brightness: ; - --tw-contrast: ; - --tw-grayscale: ; - --tw-hue-rotate: ; - --tw-invert: ; - --tw-saturate: ; - --tw-sepia: ; - --tw-drop-shadow: ; - --tw-backdrop-blur: ; - --tw-backdrop-brightness: ; - --tw-backdrop-contrast: ; - --tw-backdrop-grayscale: ; - --tw-backdrop-hue-rotate: ; - --tw-backdrop-invert: ; - --tw-backdrop-opacity: ; - --tw-backdrop-saturate: ; - --tw-backdrop-sepia: ; - --tw-contain-size: ; - --tw-contain-layout: ; - --tw-contain-paint: ; - --tw-contain-style: ; -} - -::backdrop { - --tw-border-spacing-x: 0; - --tw-border-spacing-y: 0; - --tw-translate-x: 0; - --tw-translate-y: 0; - --tw-rotate: 0; - --tw-skew-x: 0; - --tw-skew-y: 0; - --tw-scale-x: 1; - --tw-scale-y: 1; - --tw-pan-x: ; - --tw-pan-y: ; - --tw-pinch-zoom: ; - --tw-scroll-snap-strictness: proximity; - --tw-gradient-from-position: ; - --tw-gradient-via-position: ; - --tw-gradient-to-position: ; - --tw-ordinal: ; - --tw-slashed-zero: ; - --tw-numeric-figure: ; - --tw-numeric-spacing: ; - --tw-numeric-fraction: ; - --tw-ring-inset: ; - --tw-ring-offset-width: 0px; - --tw-ring-offset-color: #fff; - --tw-ring-color: rgb(59 130 246 / 0.5); - --tw-ring-offset-shadow: 0 0 #0000; - --tw-ring-shadow: 0 0 #0000; - --tw-shadow: 0 0 #0000; - --tw-shadow-colored: 0 0 #0000; - --tw-blur: ; - --tw-brightness: ; - --tw-contrast: ; - --tw-grayscale: ; - --tw-hue-rotate: ; - --tw-invert: ; - --tw-saturate: ; - --tw-sepia: ; - --tw-drop-shadow: ; - --tw-backdrop-blur: ; - --tw-backdrop-brightness: ; - --tw-backdrop-contrast: ; - --tw-backdrop-grayscale: ; - --tw-backdrop-hue-rotate: ; - --tw-backdrop-invert: ; - --tw-backdrop-opacity: ; - --tw-backdrop-saturate: ; - --tw-backdrop-sepia: ; - --tw-contain-size: ; - --tw-contain-layout: ; - --tw-contain-paint: ; - --tw-contain-style: ; -} - -:root,.light,[data-theme="light"] { - color-scheme: light; - --nextui-background: 0 0% 100%; - --nextui-foreground-50: 0 0% 98.04%; - --nextui-foreground-100: 240 4.76% 95.88%; - --nextui-foreground-200: 240 5.88% 90%; - --nextui-foreground-300: 240 4.88% 83.92%; - --nextui-foreground-400: 240 5.03% 64.9%; - --nextui-foreground-500: 240 3.83% 46.08%; - --nextui-foreground-600: 240 5.2% 33.92%; - --nextui-foreground-700: 240 5.26% 26.08%; - --nextui-foreground-800: 240 3.7% 15.88%; - --nextui-foreground-900: 240 5.88% 10%; - --nextui-foreground: 201.81999999999994 24.44% 8.82%; - --nextui-divider: 0 0% 6.67%; - --nextui-divider-opacity: 0.15; - --nextui-focus: 212.01999999999998 100% 46.67%; - --nextui-overlay: 0 0% 0%; - --nextui-content1: 0 0% 100%; - --nextui-content1-foreground: 201.81999999999994 24.44% 8.82%; - --nextui-content2: 240 4.76% 95.88%; - --nextui-content2-foreground: 240 3.7% 15.88%; - --nextui-content3: 240 5.88% 90%; - --nextui-content3-foreground: 240 5.26% 26.08%; - --nextui-content4: 240 4.88% 83.92%; - --nextui-content4-foreground: 240 5.2% 33.92%; - --nextui-default-50: 0 0% 98.04%; - --nextui-default-100: 240 4.76% 95.88%; - --nextui-default-200: 240 5.88% 90%; - --nextui-default-300: 240 4.88% 83.92%; - --nextui-default-400: 240 5.03% 64.9%; - --nextui-default-500: 240 3.83% 46.08%; - --nextui-default-600: 240 5.2% 33.92%; - --nextui-default-700: 240 5.26% 26.08%; - --nextui-default-800: 240 3.7% 15.88%; - --nextui-default-900: 240 5.88% 10%; - --nextui-default-foreground: 0 0% 0%; - --nextui-default: 240 4.88% 83.92%; - --nextui-primary-50: 212.5 92.31% 94.9%; - --nextui-primary-100: 211.84000000000003 92.45% 89.61%; - --nextui-primary-200: 211.84000000000003 92.45% 79.22%; - --nextui-primary-300: 212.24 92.45% 68.82%; - --nextui-primary-400: 212.14 92.45% 58.43%; - --nextui-primary-500: 212.01999999999998 100% 46.67%; - --nextui-primary-600: 212.14 100% 38.43%; - --nextui-primary-700: 212.24 100% 28.82%; - --nextui-primary-800: 211.84000000000003 100% 19.22%; - --nextui-primary-900: 211.84000000000003 100% 9.61%; - --nextui-primary-foreground: 0 0% 100%; - --nextui-primary: 212.01999999999998 100% 46.67%; - --nextui-secondary-50: 270 61.54% 94.9%; - --nextui-secondary-100: 270 59.26% 89.41%; - --nextui-secondary-200: 270 59.26% 78.82%; - --nextui-secondary-300: 270 59.26% 68.24%; - --nextui-secondary-400: 270 59.26% 57.65%; - --nextui-secondary-500: 270 66.67% 47.06%; - --nextui-secondary-600: 270 66.67% 37.65%; - --nextui-secondary-700: 270 66.67% 28.24%; - --nextui-secondary-800: 270 66.67% 18.82%; - --nextui-secondary-900: 270 66.67% 9.41%; - --nextui-secondary-foreground: 0 0% 100%; - --nextui-secondary: 270 66.67% 47.06%; - --nextui-success-50: 146.66999999999996 64.29% 94.51%; - --nextui-success-100: 145.71000000000004 61.4% 88.82%; - --nextui-success-200: 146.2 61.74% 77.45%; - --nextui-success-300: 145.78999999999996 62.57% 66.47%; - --nextui-success-400: 146.01 62.45% 55.1%; - --nextui-success-500: 145.96000000000004 79.46% 43.92%; - --nextui-success-600: 146.01 79.89% 35.1%; - --nextui-success-700: 145.78999999999996 79.26% 26.47%; - --nextui-success-800: 146.2 79.78% 17.45%; - --nextui-success-900: 145.71000000000004 77.78% 8.82%; - --nextui-success-foreground: 0 0% 0%; - --nextui-success: 145.96000000000004 79.46% 43.92%; - --nextui-warning-50: 54.55000000000001 91.67% 95.29%; - --nextui-warning-100: 37.139999999999986 91.3% 90.98%; - --nextui-warning-200: 37.139999999999986 91.3% 81.96%; - --nextui-warning-300: 36.95999999999998 91.24% 73.14%; - --nextui-warning-400: 37.00999999999999 91.26% 64.12%; - --nextui-warning-500: 37.02999999999997 91.27% 55.1%; - --nextui-warning-600: 37.00999999999999 74.22% 44.12%; - --nextui-warning-700: 36.95999999999998 73.96% 33.14%; - --nextui-warning-800: 37.139999999999986 75% 21.96%; - --nextui-warning-900: 37.139999999999986 75% 10.98%; - --nextui-warning-foreground: 0 0% 0%; - --nextui-warning: 37.02999999999997 91.27% 55.1%; - --nextui-danger-50: 339.13 92% 95.1%; - --nextui-danger-100: 340 91.84% 90.39%; - --nextui-danger-200: 339.3299999999999 90% 80.39%; - --nextui-danger-300: 339.11 90.6% 70.78%; - --nextui-danger-400: 339 90% 60.78%; - --nextui-danger-500: 339.20000000000005 90.36% 51.18%; - --nextui-danger-600: 339 86.54% 40.78%; - --nextui-danger-700: 339.11 85.99% 30.78%; - --nextui-danger-800: 339.3299999999999 86.54% 20.39%; - --nextui-danger-900: 340 84.91% 10.39%; - --nextui-danger-foreground: 0 0% 100%; - --nextui-danger: 339.20000000000005 90.36% 51.18%; - --nextui-divider-weight: 1px; - --nextui-disabled-opacity: .5; - --nextui-font-size-tiny: 0.75rem; - --nextui-font-size-small: 0.875rem; - --nextui-font-size-medium: 1rem; - --nextui-font-size-large: 1.125rem; - --nextui-line-height-tiny: 1rem; - --nextui-line-height-small: 1.25rem; - --nextui-line-height-medium: 1.5rem; - --nextui-line-height-large: 1.75rem; - --nextui-radius-small: 8px; - --nextui-radius-medium: 12px; - --nextui-radius-large: 14px; - --nextui-border-width-small: 1px; - --nextui-border-width-medium: 2px; - --nextui-border-width-large: 3px; - --nextui-box-shadow-small: 0px 0px 5px 0px rgb(0 0 0 / 0.02), 0px 2px 10px 0px rgb(0 0 0 / 0.06), 0px 0px 1px 0px rgb(0 0 0 / 0.3); - --nextui-box-shadow-medium: 0px 0px 15px 0px rgb(0 0 0 / 0.03), 0px 2px 30px 0px rgb(0 0 0 / 0.08), 0px 0px 1px 0px rgb(0 0 0 / 0.3); - --nextui-box-shadow-large: 0px 0px 30px 0px rgb(0 0 0 / 0.04), 0px 30px 60px 0px rgb(0 0 0 / 0.12), 0px 0px 1px 0px rgb(0 0 0 / 0.3); - --nextui-hover-opacity: .8; -} - -.dark,[data-theme="dark"] { - color-scheme: dark; - --nextui-background: 0 0% 0%; - --nextui-foreground-50: 240 5.88% 10%; - --nextui-foreground-100: 240 3.7% 15.88%; - --nextui-foreground-200: 240 5.26% 26.08%; - --nextui-foreground-300: 240 5.2% 33.92%; - --nextui-foreground-400: 240 3.83% 46.08%; - --nextui-foreground-500: 240 5.03% 64.9%; - --nextui-foreground-600: 240 4.88% 83.92%; - --nextui-foreground-700: 240 5.88% 90%; - --nextui-foreground-800: 240 4.76% 95.88%; - --nextui-foreground-900: 0 0% 98.04%; - --nextui-foreground: 210 5.56% 92.94%; - --nextui-focus: 212.01999999999998 100% 46.67%; - --nextui-overlay: 0 0% 0%; - --nextui-divider: 0 0% 100%; - --nextui-divider-opacity: 0.15; - --nextui-content1: 240 5.88% 10%; - --nextui-content1-foreground: 0 0% 98.04%; - --nextui-content2: 240 3.7% 15.88%; - --nextui-content2-foreground: 240 4.76% 95.88%; - --nextui-content3: 240 5.26% 26.08%; - --nextui-content3-foreground: 240 5.88% 90%; - --nextui-content4: 240 5.2% 33.92%; - --nextui-content4-foreground: 240 4.88% 83.92%; - --nextui-default-50: 240 5.88% 10%; - --nextui-default-100: 240 3.7% 15.88%; - --nextui-default-200: 240 5.26% 26.08%; - --nextui-default-300: 240 5.2% 33.92%; - --nextui-default-400: 240 3.83% 46.08%; - --nextui-default-500: 240 5.03% 64.9%; - --nextui-default-600: 240 4.88% 83.92%; - --nextui-default-700: 240 5.88% 90%; - --nextui-default-800: 240 4.76% 95.88%; - --nextui-default-900: 0 0% 98.04%; - --nextui-default-foreground: 0 0% 100%; - --nextui-default: 240 5.26% 26.08%; - --nextui-primary-50: 211.84000000000003 100% 9.61%; - --nextui-primary-100: 211.84000000000003 100% 19.22%; - --nextui-primary-200: 212.24 100% 28.82%; - --nextui-primary-300: 212.14 100% 38.43%; - --nextui-primary-400: 212.01999999999998 100% 46.67%; - --nextui-primary-500: 212.14 92.45% 58.43%; - --nextui-primary-600: 212.24 92.45% 68.82%; - --nextui-primary-700: 211.84000000000003 92.45% 79.22%; - --nextui-primary-800: 211.84000000000003 92.45% 89.61%; - --nextui-primary-900: 212.5 92.31% 94.9%; - --nextui-primary-foreground: 0 0% 100%; - --nextui-primary: 212.01999999999998 100% 46.67%; - --nextui-secondary-50: 270 66.67% 9.41%; - --nextui-secondary-100: 270 66.67% 18.82%; - --nextui-secondary-200: 270 66.67% 28.24%; - --nextui-secondary-300: 270 66.67% 37.65%; - --nextui-secondary-400: 270 66.67% 47.06%; - --nextui-secondary-500: 270 59.26% 57.65%; - --nextui-secondary-600: 270 59.26% 68.24%; - --nextui-secondary-700: 270 59.26% 78.82%; - --nextui-secondary-800: 270 59.26% 89.41%; - --nextui-secondary-900: 270 61.54% 94.9%; - --nextui-secondary-foreground: 0 0% 100%; - --nextui-secondary: 270 59.26% 57.65%; - --nextui-success-50: 145.71000000000004 77.78% 8.82%; - --nextui-success-100: 146.2 79.78% 17.45%; - --nextui-success-200: 145.78999999999996 79.26% 26.47%; - --nextui-success-300: 146.01 79.89% 35.1%; - --nextui-success-400: 145.96000000000004 79.46% 43.92%; - --nextui-success-500: 146.01 62.45% 55.1%; - --nextui-success-600: 145.78999999999996 62.57% 66.47%; - --nextui-success-700: 146.2 61.74% 77.45%; - --nextui-success-800: 145.71000000000004 61.4% 88.82%; - --nextui-success-900: 146.66999999999996 64.29% 94.51%; - --nextui-success-foreground: 0 0% 0%; - --nextui-success: 145.96000000000004 79.46% 43.92%; - --nextui-warning-50: 37.139999999999986 75% 10.98%; - --nextui-warning-100: 37.139999999999986 75% 21.96%; - --nextui-warning-200: 36.95999999999998 73.96% 33.14%; - --nextui-warning-300: 37.00999999999999 74.22% 44.12%; - --nextui-warning-400: 37.02999999999997 91.27% 55.1%; - --nextui-warning-500: 37.00999999999999 91.26% 64.12%; - --nextui-warning-600: 36.95999999999998 91.24% 73.14%; - --nextui-warning-700: 37.139999999999986 91.3% 81.96%; - --nextui-warning-800: 37.139999999999986 91.3% 90.98%; - --nextui-warning-900: 54.55000000000001 91.67% 95.29%; - --nextui-warning-foreground: 0 0% 0%; - --nextui-warning: 37.02999999999997 91.27% 55.1%; - --nextui-danger-50: 340 84.91% 10.39%; - --nextui-danger-100: 339.3299999999999 86.54% 20.39%; - --nextui-danger-200: 339.11 85.99% 30.78%; - --nextui-danger-300: 339 86.54% 40.78%; - --nextui-danger-400: 339.20000000000005 90.36% 51.18%; - --nextui-danger-500: 339 90% 60.78%; - --nextui-danger-600: 339.11 90.6% 70.78%; - --nextui-danger-700: 339.3299999999999 90% 80.39%; - --nextui-danger-800: 340 91.84% 90.39%; - --nextui-danger-900: 339.13 92% 95.1%; - --nextui-danger-foreground: 0 0% 100%; - --nextui-danger: 339.20000000000005 90.36% 51.18%; - --nextui-divider-weight: 1px; - --nextui-disabled-opacity: .5; - --nextui-font-size-tiny: 0.75rem; - --nextui-font-size-small: 0.875rem; - --nextui-font-size-medium: 1rem; - --nextui-font-size-large: 1.125rem; - --nextui-line-height-tiny: 1rem; - --nextui-line-height-small: 1.25rem; - --nextui-line-height-medium: 1.5rem; - --nextui-line-height-large: 1.75rem; - --nextui-radius-small: 8px; - --nextui-radius-medium: 12px; - --nextui-radius-large: 14px; - --nextui-border-width-small: 1px; - --nextui-border-width-medium: 2px; - --nextui-border-width-large: 3px; - --nextui-box-shadow-small: 0px 0px 5px 0px rgb(0 0 0 / 0.05), 0px 2px 10px 0px rgb(0 0 0 / 0.2), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15); - --nextui-box-shadow-medium: 0px 0px 15px 0px rgb(0 0 0 / 0.06), 0px 2px 30px 0px rgb(0 0 0 / 0.22), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15); - --nextui-box-shadow-large: 0px 0px 30px 0px rgb(0 0 0 / 0.07), 0px 30px 60px 0px rgb(0 0 0 / 0.26), inset 0px 0px 1px 0px rgb(255 255 255 / 0.15); - --nextui-hover-opacity: .9; -}