Skip to content

Commit 79268cb

Browse files
committed
fix: updated announcement bar colors as requested
1 parent 0e35f2f commit 79268cb

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

src/css/custom.css

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -688,27 +688,37 @@ td img {
688688
background-size: 24px 24px;
689689
}
690690

691-
/* 🎨 Announcement Bar - Light Orange Theme */
691+
/* GLOBAL ANNOUNCEMENT BAR STYLES */
692692
div[class*="announcementBar_"],
693693
div[class*="announcementBarContent_"] {
694694
font-weight: 600 !important;
695695
font-size: 16px !important;
696696
text-align: center !important;
697697
padding: 10px 0 !important;
698-
border-bottom: 1px solid #ffb74d !important;
698+
border-bottom: 1px solid #FF7A00 !important;
699699
transition: background 0.3s ease-in-out;
700700
}
701701

702-
/* Light Mode */
702+
/* LIGHT MODE — soft but NOT white */
703703
html[data-theme="light"] div[class*="announcementBar_"] {
704-
background: linear-gradient(90deg, #FFE0B2 0%, #FFB74D 100%) !important;
704+
background: linear-gradient(
705+
90deg,
706+
#FFE5CC 0%, /* soft light orange, not white */
707+
#FFCC99 50%, /* warm pastel orange */
708+
#FF9933 100% /* logo-like orange */
709+
) !important;
705710
color: #000 !important;
706711
}
707712

708-
/* Dark Mode */
713+
/* DARK MODE — muted version for dark backgrounds */
709714
html[data-theme="dark"] div[class*="announcementBar_"] {
710-
background: linear-gradient(90deg, #33200D 0%, #FFB74D 100%) !important;
711-
color: #fff !important;
715+
background: linear-gradient(
716+
90deg,
717+
#4A3728 0%, /* muted warm tint */
718+
#CC7A3A 40%, /* softer orange blend */
719+
#FF7A00 100% /* keploy orange */
720+
) !important;
721+
color: #ffffff !important;
712722
}
713723

714724
.list-disc > a {

0 commit comments

Comments
 (0)