1
0
mirror of https://github.com/Rnhmjoj/solarized-dark-ui synced 2025-01-10 09:24:21 +01:00
solarized-dark-ui/stylesheets/ui-mixins.less

40 lines
723 B
Plaintext
Raw Normal View History

2013-09-12 01:29:14 +02:00
@import "ui-variables";
// Pattern matching; ish is cray.
// http://lesscss.org/#-pattern-matching-and-guard-expressions
.text(normal) {
font-weight: normal;
color: @text-color;
2013-12-04 00:47:55 +01:00
text-shadow: none;
2013-09-12 01:29:14 +02:00
}
.text(subtle) {
font-weight: normal;
color: @text-color-subtle;
text-shadow: none;
}
.text(highlight) {
font-weight: normal;
color: @text-color-highlight;
2013-12-04 00:47:55 +01:00
text-shadow: 0 1px 0 rgba(0,0,0, .5);
2013-09-12 01:29:14 +02:00
}
.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;
}