framework7
Version:
Full featured mobile HTML framework for building iOS & Android apps
34 lines (32 loc) • 581 B
text/less
.md {
@import (multiple) '../../less/colors-md.less';
body {
font-family: Roboto, Noto, Helvetica, Arial, sans-serif;
color: #212121;
line-height: 1.5;
}
.ios-only, .if-ios {
display: none ;
}
a {
color: @themeColor;
}
// Dark Theme
& when (@includeDarkTheme) {
.theme-dark {
color: rgba(255,255,255,0.87);
}
}
.color-theme-loop({
.color-theme-@{colorThemeName} {
a {
color: @colorThemeValue;
}
}
});
.color-loop({
a.color-@{colorName} {
color: @colorValue;
}
});
}