django-markdown-editor icon indicating copy to clipboard operation
django-markdown-editor copied to clipboard

Ace theme

Open Andreas-UI opened this issue 4 years ago • 1 comments

I have been trying to change the ace theme, but it is not working. Moreover, when i tried to remove the github-theme script, unfortunately, the ace editor is still the same

Andreas-UI avatar Apr 30 '21 08:04 Andreas-UI

image

you can directly modify the colors in a file.

color.css

.ace-github .ace_gutter {
    background: #1d1f21 !important;
}
form .martor-preview  {
    background: #1d1f21 !important;
    margin: 0px 0px 0 32px;
}

form .martor-preview h2 {
    border-bottom: 1px solid #ccc;
    color: white !important;
}
.ace-github {
    background: #141517;
    color:white;
}
.ace-github .ace_heading {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}
.resizable .resizable-b {
    background: #cab3c9 !important;
}

.mdeditor_toolbar {
    position: relative;
    height: 34px;
    background: #1d1f21 !important;
    border: none;
    box-shadow: 0 2px 0px rgb(44, 43, 47) !important;
}

teury avatar Dec 19 '21 19:12 teury