我的 CSS 文件中的所有颜色都分散在各处。
我希望我在 CSS 中的所有颜色都在一个地方,以便它们易于调整。像常量这样的东西会很有用。
什么是帮助的好方法?我在想像下面这样的东西,但我会很感激任何建议:
BODY_BACKGROUND_COLOR = #A8A8A8;
HEADER_BACKGROUND_COLOR = BLUE;
HEADER_TEXT = BLACK;
BODY_TEXT = #eee;
/* ... tonnes of CSS ... */
body {
background-color: BODY_BACKGROUND_COLOR;
/* ... tonnes of CSS ... */
.header {
/* ... tonnes of CSS ... */
background-color: HEADER_BACKGROUND_COLOR;
/* ... tonnes of CSS ... */
}