@@ -46,6 +46,8 @@ $white: #fff;
4646// Color Themes
4747/// /////////////////
4848
49+ // Brand Themes
50+
4951.theme-white {
5052 --theme-primary-color : #{$white } ;
5153 --theme-secondary-color : var (--theme-primary-color );
@@ -93,3 +95,29 @@ $white: #fff;
9395 --theme-accent-color : #{$white } ;
9496 --theme-text-color : var (--theme-accent-color );
9597}
98+
99+ // Custom Themes
100+
101+ .theme-rust {
102+ --theme-primary-color : hsl (18 , 84% , 28% );
103+ --theme-secondary-color : hsl (18 , 84% , 22% );
104+ --theme-border-color : var (--theme-primary-color );
105+ --theme-accent-color : #{$white } ;
106+ --theme-text-color : var (--theme-accent-color );
107+ }
108+
109+ .theme-royal {
110+ --theme-primary-color : hsl (254 , 100% , 28% );
111+ --theme-secondary-color : hsl (254 , 100% , 22% );
112+ --theme-border-color : var (--theme-primary-color );
113+ --theme-accent-color : #{$white } ;
114+ --theme-text-color : var (--theme-accent-color );
115+ }
116+
117+ .theme-grass {
118+ --theme-primary-color : hsl (161 , 100% , 20% );
119+ --theme-secondary-color : hsl (161 , 100% , 16% );
120+ --theme-border-color : var (--theme-primary-color );
121+ --theme-accent-color : #{$white } ;
122+ --theme-text-color : var (--theme-accent-color );
123+ }
0 commit comments