-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
In documentation of theming.js:
- {{foreground-1}} - used for primary text
- {{foreground-2}} - used for secondary text/divider
- {{foreground-3}} - used for disabled text
- {{foreground-4}} - used for dividers
And here they are:
var DARK_FOREGROUND = {
name: 'dark',
'1': 'rgba(0,0,0,0.87)',
'2': 'rgba(0,0,0,0.54)',
'3': 'rgba(0,0,0,0.38)',
'4': 'rgba(0,0,0,0.12)'
};
var LIGHT_FOREGROUND = {
name: 'light',
'1': 'rgba(255,255,255,1.0)',
'2': 'rgba(255,255,255,0.7)',
'3': 'rgba(255,255,255,0.5)',
'4': 'rgba(255,255,255,0.12)'
};