Add mint theme

This commit is contained in:
2025-12-27 20:36:46 -07:00
parent caf8d7fc7e
commit af4d634ed9
3 changed files with 15 additions and 0 deletions

View File

@@ -64,6 +64,18 @@ body {
--col8: rgb(140, 128, 152);
}
.mint-theme {
--col0: rgb(8, 32, 16);
--col1: rgb(16, 48, 32);
--col2: rgb(32, 56, 40);
--col3: rgb(48, 72, 48);
--col4: rgb(64, 88, 66);
--col5: rgb(80, 104, 65);
--col6: rgb(96, 120, 80);
--col7: rgb(112, 136, 85);
--col8: rgb(128, 152, 95);
}
.button {
@apply rounded-md cursor-pointer text-[16px] py-1.5 px-3 transition-colors border;
}

View File

@@ -376,6 +376,8 @@ export default function RootLayout ({
? 'blue-theme'
: normalConfig?.settings.theme === 4
? 'purple-theme'
: normalConfig?.settings.theme === 5
? 'mint-theme'
: 'dark-theme'
}
>

View File

@@ -146,6 +146,7 @@ export default function Settings () {
<option value={2}>Green</option>
<option value={3}>Blue</option>
<option value={4}>Purple</option>
<option value={5}>Mint</option>
</select>
</div>
</div>