From 1916ad332b52b3c7e23789dc31cdfe679a75bdc8 Mon Sep 17 00:00:00 2001 From: sparshg <43041139+sparshg@users.noreply.github.com> Date: Thu, 26 Sep 2024 15:36:15 +0530 Subject: [PATCH] fix themes, bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- app/tailwind.config.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 590c2a2..4acfc46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,7 +154,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "battleship" -version = "1.1.0" +version = "1.1.1" dependencies = [ "axum", "dotenv", diff --git a/Cargo.toml b/Cargo.toml index b5f1b5a..27097b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "battleship" -version = "1.1.0" +version = "1.1.1" edition = "2021" [dependencies] diff --git a/app/tailwind.config.js b/app/tailwind.config.js index 6fd09b7..a46b87e 100644 --- a/app/tailwind.config.js +++ b/app/tailwind.config.js @@ -9,7 +9,7 @@ export default { ], daisyui: { - themes: true, // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"] + themes: ["cupcake", "night"], // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"] darkTheme: "night", // name of one of the included themes for dark mode base: true, // applies background color and foreground color for root element by default styled: true, // include daisyUI colors and design decisions for all components