Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add grey color #117

Closed
wants to merge 3 commits into from
Closed

[WIP] Add grey color #117

wants to merge 3 commits into from

Conversation

haggen88
Copy link
Contributor

Closes #116

@clefebvre
Copy link
Member

This was not tested.. it's not cool. It takes time to figure out why it doesn't work, and if we actually merge without testing it ourselves, we end up with regressions during BETA.

Anyway. There are two issues with it.

First, the title color is too dark:

image

Either the title font should be white (which would look weird among the other colored notes), or the grey needs to be lighter.

Second, you're missing some defs in the CSS for this to work:

/* grey */
.grey textview text,
button.grey {
    background-color: @grey1;
    color: #303030;
    caret-color: #303030;
}

.grey textview text selection {
    background-color: @grey5;
}

.grey #title-bar {
    background-color: @grey2;
}

#sticky-note.grey scrollbar slider {
    background-color: @grey3;
}

#sticky-note.grey scrollbar slider:hover {
    background-color: @grey4;
}

#sticky-note.grey .scrollbar.trough,
#sticky-note.grey scrollbar trough {
    background-color: @grey5;
}

.grey #window-button:hover {
    background-color: @grey4;
}

.grey.note-preview {
    background-color: @grey1;
    color: #303030;
    box-shadow: 1px 1px 2px;
}

Without this the grey note looks transparent..

@clefebvre clefebvre changed the title Add grey color [WIP] Add grey color Nov 29, 2023
@haggen88 haggen88 closed this Nov 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request] - Add a darker color in the note options
2 participants