[Themes] Update bundle declarations

Update bundle declarations to provide a THEME constant for
use in filtering out theme-specific CSS additions.
This commit is contained in:
Victor Woeltjen
2015-11-04 11:53:10 -08:00
parent bda1bf9f9a
commit e32eb11e60
3 changed files with 40 additions and 23 deletions

View File

@@ -1,12 +1,18 @@
{
"name": "Sonw",
"description": "Snow theme: light and cool",
"extensions": {
"stylesheets": [
{
"stylesheetUrl": "css/theme-snow.css",
"priority": 1000
}
]
}
}
"name": "Snow",
"description": "Snow theme: light and cool",
"extensions": {
"stylesheets": [
{
"stylesheetUrl": "css/theme-snow.css",
"priority": 1000
}
],
"constants": [
{
"key": "THEME",
"value": "snow"
}
]
}
}