ToDo/static/global.css

14 lines
189 B
CSS
Raw Permalink Normal View History

2025-10-22 13:54:40 +02:00
body {
--primary-bg-color: darkgreen;
2025-10-22 13:54:40 +02:00
--primary-text-color: black;
2025-10-02 11:41:56 +02:00
width: 100%;
2025-10-22 13:54:40 +02:00
background-color: var(--primary-bg-color, white);
}
* {
color: var(--primary-text-color, black);
2025-10-02 11:41:56 +02:00
}