code-editor.less

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

code-editor, css-code-editor, html-code-editor, javascript-code-editor {
    width: 100%;
    height: 100%;
    position: absolute;
    background: @editor-bg-white;
    color: @primary-text-color-white;
}

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