Implement darker red only if red theme is selected

This commit is contained in:
Jason Henriquez 2023-11-23 09:01:56 -06:00
parent 7056778872
commit da5a42d5f7
1 changed files with 10 additions and 3 deletions

View File

@ -7,10 +7,10 @@
.pastelPink,
.hotPink {
--primary-input-color: rgba(0, 0, 0, 0.50);
--destructive-color: #7F0000;
--destructive-color: #f44336;
--destructive-text-color: #FFFFFF;
--destructive-hover-color: #FF2F2F;
--destructive-active-color: #AD6060;
--destructive-hover-color: #e53935;
--destructive-active-color: #c62828;
}
.system[data-system-theme*='light'], .light,
@ -241,6 +241,13 @@ it can be safely elided. This looks quite pleasant on this theme. */
text-decoration: underline;
}
.mainRed, .secRed {
--destructive-color: #7F0000 !important;
--destructive-text-color: #FFFFFF !important;
--destructive-hover-color: #FF2F2F !important;
--destructive-active-color: #AD6060 !important;
}
.mainRed,
.mainPink,
.mainPurple,