kbrsh / wing

:gem: A beautiful CSS framework designed for minimalists.
https://kbrsh.github.io/wing
MIT License
2.01k stars 160 forks source link

Implement Dark/Inverted style #43

Closed ender-null closed 7 years ago

ender-null commented 7 years ago

I would love to use the css styles but with inverted color scheme, would it be hard to implement?

kbrsh commented 7 years ago

Hey!

Overriding a style made by Wing is easy, and would be similar to how you'd accomplish it with other frameworks. Just style elements you want to be a different color with plain CSS (after you've loaded Wing).

For example:

h1, h2, h3, h4, h5, p, {
  color: white;
}
button {
  background: white;
  color: white;
}

Also, for buttons, Wing provides styles such as btn btn-outline that allow support for darker color schemes.

kbrsh commented 7 years ago

Also, in Wing v1, there will be a bit more functionality, while keeping the file size as small as possible, and Wing will provide more utilities for different color schemes.

ender-null commented 7 years ago

Thanks I could do it in a couple of seconds, good job guys

kbrsh commented 7 years ago

Thank you so much! 😄