ajusa / lit

World's smallest responsive πŸ”₯ css framework (395 bytes)

Home Page:https://ajusa.github.io/lit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dark theme

kaihendry opened this issue Β· comments

For people who prefers-color-scheme: dark please πŸ˜†

Sorry for the late reply! This is something I don't think I would consider adding to lit at this time, since the goal is to remain extremely lean. If you want to make an existing lit project be dark, here is a quick example:

* {
    background: #2E3440 !important;
    color: white;
}

and it should work. If enough people support this, I'll consider adding it to the core but for now I would just use that snippet.