Created
September 4, 2015 11:43
-
-
Save clemblanco/831f9faaef19611c2393 to your computer and use it in GitHub Desktop.
Titanium - Alloy Framework - Defining an using a theme.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```javascript | |
"#button": { | |
// ... | |
backgroundColor: Alloy.CFG.design.mainColor, | |
// ... | |
} | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```javascript | |
{ | |
"global": { | |
"theme": "default" | |
}, | |
// ... | |
} | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```javascript | |
{ | |
"global": { | |
"design": { | |
// ... | |
"mainColor": "#345678”, | |
// ... | |
} | |
} | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment