From 3b8f141c8b192fbf5f9ee68a71309db34a3d7acd Mon Sep 17 00:00:00 2001 From: dananaimi Date: Thu, 30 Nov 2023 15:35:37 +0300 Subject: [PATCH] feat: added styles.css for random-controller --- src/components/header/random-controller/styles.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/components/header/random-controller/styles.ts diff --git a/src/components/header/random-controller/styles.ts b/src/components/header/random-controller/styles.ts new file mode 100644 index 00000000..266ebab1 --- /dev/null +++ b/src/components/header/random-controller/styles.ts @@ -0,0 +1,15 @@ +import { tv } from 'tailwind-variants' + +export const controllerButton = tv({ + variants: { + theme: { + transition: /*tw:*/ 'text-white', + dark: /*tw:*/ 'text-dark-foreground', + light: /*tw:*/ 'text-light-foreground', + 'blue-room': /*tw:*/ 'text-blue-room', + train: /*tw:*/ 'text-train', + waterfall: /*tw:*/ 'text-waterfall', + 'camping-fire': /*tw:*/ 'text-camping-fire' + } + } +}) \ No newline at end of file