code-editor.less

16 lines | 329 B Blame History Raw Download
@import url('../../../shared/theme.less');

code-editor {
    width: 100%;
    height: 100%;
    display: block;
    background: @editor-bg-white;
    color: @primary-text-color-white;
}

@media (prefers-color-scheme: dark) {
    code-editor {
        background: @editor-bg-dark;
        color: @primary-text-color-dark;
    }
}