32 lines
434 B
CSS
32 lines
434 B
CSS
.theme-base {
|
|
color: var(--theme-base);
|
|
}
|
|
|
|
.theme-bg {
|
|
color: var(--theme-bg);
|
|
}
|
|
|
|
.theme-text {
|
|
color: var(--theme-text);
|
|
}
|
|
|
|
.theme-tty-prompt {
|
|
color: var(--theme-tty-prompt);
|
|
}
|
|
|
|
.theme-tty-command {
|
|
color: var(--theme-tty-command);
|
|
}
|
|
|
|
.theme-tty-output {
|
|
color: var(--theme-tty-output);
|
|
}
|
|
|
|
.theme-tty-warning {
|
|
color: var(--theme-tty-warning);
|
|
}
|
|
|
|
.theme-tty-error {
|
|
color: var(--theme-tty-error);
|
|
}
|
|
|