mirror of
https://github.com/Rnhmjoj/solarized-dark-ui
synced 2025-01-10 09:24:21 +01:00
40 lines
722 B
Plaintext
40 lines
722 B
Plaintext
@import "ui-variables";
|
|
|
|
// Pattern matching; ish is cray.
|
|
// http://lesscss.org/#-pattern-matching-and-guard-expressions
|
|
.text(normal) {
|
|
font-weight: normal;
|
|
color: @text-color;
|
|
text-shadow: 0 -1px 0 #333;
|
|
}
|
|
.text(subtle) {
|
|
font-weight: normal;
|
|
color: @text-color-subtle;
|
|
text-shadow: none;
|
|
}
|
|
.text(highlight) {
|
|
font-weight: normal;
|
|
color: @text-color-highlight;
|
|
text-shadow: 0 -1px 0 #333;
|
|
}
|
|
.text(selected) {
|
|
.text(highlight)
|
|
}
|
|
|
|
.text(info) {
|
|
color: @text-color-info;
|
|
text-shadow: none;
|
|
}
|
|
.text(success) {
|
|
color: @text-color-success;
|
|
text-shadow: none;
|
|
}
|
|
.text(warning) {
|
|
color: @text-color-warning;
|
|
text-shadow: none;
|
|
}
|
|
.text(error) {
|
|
color: @text-color-error;
|
|
text-shadow: none;
|
|
}
|