1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/styles/color-schemes.css

42 lines
911 B
CSS
Raw Normal View History

2022-05-28 03:45:05 +00:00
/* Light theme / unsupported */
body {
--background: #fafafa;
--foreground: black;
--border: gray;
--interactable: #fafafab5;
--selection: #7777ff;
--anchor: #4444ff;
--anchor-visited: #aa44ff;
--anchor-active: #ff4444;
--positive: #008800;
--negative: #880000;
}
2022-05-29 02:01:56 +00:00
.postcard {
2022-05-31 03:03:48 +00:00
filter: blur(7px) contrast(25%) brightness(175%);
2022-05-29 02:01:56 +00:00
}
2022-05-28 03:45:05 +00:00
/* Dark theme */
@media (prefers-color-scheme: dark) {
body {
--background: #050505;
--foreground: white;
--border: gray;
--interactable: #050505b5;
--selection: #3333dd;
--anchor: #8888ff;
--anchor-visited: #aa88ff;
--anchor-active: #ff8888;
--positive: #88ff88;
--negative: #ff8888;
}
2022-05-29 02:01:56 +00:00
.postcard {
2022-05-31 03:03:48 +00:00
filter: blur(7px) contrast(50%) brightness(50%);
2022-05-29 02:01:56 +00:00
}
2022-05-28 03:45:05 +00:00
}