18 lines
505 B
CSS
18 lines
505 B
CSS
:root {
|
|
color-scheme: light only !important;
|
|
}
|
|
|
|
html, body, #react-entry-point {
|
|
background-color: #ffffff !important;
|
|
color: #131722 !important;
|
|
}
|
|
|
|
/* Dash 4.x 다크모드 CSS 변수 완전 덮어쓰기 */
|
|
:root {
|
|
--Dash-Fill-Inverse-Strong: #ffffff !important;
|
|
--Dash-Text-Strong: #131722 !important;
|
|
--Dash-Text-Primary: rgba(0, 18, 77, 0.87) !important;
|
|
--Dash-Stroke-Strong: rgba(0, 18, 77, 0.45) !important;
|
|
--Dash-Fill-Disabled: rgba(0, 24, 102, 0.1) !important;
|
|
}
|