mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
14 lines
277 B
CSS
14 lines
277 B
CSS
@media (prefers-color-scheme: dark) {
|
|
pre[data-theme="light"],
|
|
code[data-theme="light"] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: light), (prefers-color-scheme: no-preference) {
|
|
pre[data-theme="dark"],
|
|
code[data-theme="dark"] {
|
|
display: none;
|
|
}
|
|
}
|