Add mint theme
This commit is contained in:
@@ -64,6 +64,18 @@ body {
|
|||||||
--col8: rgb(140, 128, 152);
|
--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 {
|
.button {
|
||||||
@apply rounded-md cursor-pointer text-[16px] py-1.5 px-3 transition-colors border;
|
@apply rounded-md cursor-pointer text-[16px] py-1.5 px-3 transition-colors border;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -376,6 +376,8 @@ export default function RootLayout ({
|
|||||||
? 'blue-theme'
|
? 'blue-theme'
|
||||||
: normalConfig?.settings.theme === 4
|
: normalConfig?.settings.theme === 4
|
||||||
? 'purple-theme'
|
? 'purple-theme'
|
||||||
|
: normalConfig?.settings.theme === 5
|
||||||
|
? 'mint-theme'
|
||||||
: 'dark-theme'
|
: 'dark-theme'
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -146,6 +146,7 @@ export default function Settings () {
|
|||||||
<option value={2}>Green</option>
|
<option value={2}>Green</option>
|
||||||
<option value={3}>Blue</option>
|
<option value={3}>Blue</option>
|
||||||
<option value={4}>Purple</option>
|
<option value={4}>Purple</option>
|
||||||
|
<option value={5}>Mint</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user