Skip to content

Instantly share code, notes, and snippets.

@crossdjinn
Last active August 4, 2018 02:54
Show Gist options
  • Save crossdjinn/eccf8db54e6da6ba7540625962915936 to your computer and use it in GitHub Desktop.
Save crossdjinn/eccf8db54e6da6ba7540625962915936 to your computer and use it in GitHub Desktop.
Angular (1.6.8)
angular.module('app',[])
.config(function($mdThemingProvider) {
// 4 real time change
$mdThemingProvider.alwaysWatchTheme(true);
// 4 custom md-toast theme
$mdThemingProvider.theme("success-toast");
$mdThemingProvider.theme("error-toast");
// here we go 4 CustomPalette
$mdThemingProvider.definePalette('CustomPalette', {
// Primary Colors
'50': '#673ab7', // Light
'100': '#0D0208', // Mid
'200': '#0D0208', // Dark
// Accent Colors
'300': '#e49742', // Light
'400': '#008F11', // Mid
'500': '#b06919', // Dark
// Neutral Colors
'600': '#b06919', // Light
'700': '#0D0208', // Warm Light
'800': '#000000', // Warm Mid
'900': '#000', // Warm Dark
'A100': '#000', // Dark
// Warning Colors
'A200': '#ff8a80', // Red - Light (Google 'Red' A100)
'A400': '#f44336', // Red - Mid (Google 'Red' 500)
'A700': '#c62828', // Red - Dark (Google 'Red' 800)
'contrastDefaultColor': 'light',
'contrastDarkColors': '50 600 700 800 900 A200'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment