override success colour of toastify to match accent colour of app

This commit is contained in:
2026-06-04 22:35:46 +02:00
parent 021841beec
commit 2511c636ab
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -4,6 +4,7 @@
@import "./styles/_button.css";
@import "./styles/_file-input.css";
@import './styles/_pgn-viewer.css';
@import "./styles/_toastify-overrides.css";
@plugin "@tailwindcss/typography";
+4
View File
@@ -0,0 +1,4 @@
:root {
/* biome-ignore lint/complexity/noImportantStyles: <override vendor style requires !important> */
--toastify-color-success: var(--accent) !important;
}