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

Theming options missing. #435

Open
NicTanghe opened this issue Aug 13, 2020 · 0 comments
Open

Theming options missing. #435

NicTanghe opened this issue Aug 13, 2020 · 0 comments

Comments

@NicTanghe
Copy link

NicTanghe commented Aug 13, 2020

While trying to create a dracula theme i ran into some issues.

  • normal background is missing. the fix for this is

:root{
    
    --MAIN-TEXT-color:#f8f8f2; /* Color of text by default */
    --MAIN-BG-color: #44475a;
body {
    color: var(--MAIN-TEXT-color) !important;
    background: var(--MAIN-BG-color) url("img_tree.gif") no-repeat fixed center; 
}
  • Page Title colour is missing

fied by

h1, h2, h3, h4, h5 {
    color: var(--MAIN-TITLES-TEXT-color) !important;
}

Or by adding a seperatevalue both in vars and in h1{color:var()}

  • The top navlink bg colour is missing.

fixed by

#top-bar {
    background-color: var(--MENU-SEARCH-BG-color)
}
  • Mermaid theming / colours are missing.

    theming options are hard for me to figure out.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant