Added themeing options
Added THEME_COLOR, THEME_COLOR_AUTO_DETECT_BROWSER_PREFERENCE, and THEME_COLOR_ENABLE_USER_OVERRIDE options
This commit is contained in:
parent
9b3495da5d
commit
904484e2b4
4 changed files with 239 additions and 147 deletions
|
@ -4,7 +4,10 @@ var gulp = require('gulp'),
|
|||
minify = require('gulp-cssnano');
|
||||
|
||||
gulp.task('less', function () {
|
||||
return gulp.src('./static/stylesheet/style.less')
|
||||
return gulp.src([
|
||||
'./static/stylesheet/style.less',
|
||||
'./static/stylesheet/dark-theme.less',
|
||||
])
|
||||
.pipe(less())
|
||||
.pipe(minify())
|
||||
.pipe(rename({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue