I am using Angular 9 with Nebular 5. I want to change the primary color of my theme. According to the site
I could use something like the following:
@import '~@nebular/theme/styles/theming';
@import '~@nebular/theme/styles/themes/default';
$nb-themes: nb-register-theme((
color-primary-100: #faf7ff, // <- new primary color
color-primary-200: #ece3ff,
color-primary-300: #d5bfff,
color-primary-400: #b18aff,
color-primary-500: #a16eff,
color-primary-600: #7b51db,
color-primary-700: #5a37b8,
color-primary-800: #3e2494,
color-primary-900: #29157a,
text-basic-color: color-basic-800,
text-disabled-color: color-basic-600,
), default, default);
I could obviously change the primary color by simply modifying the following line:
color-primary-100: #faf7aa, // <- new primary color
What I dont know is how to generate the remaining colors:
color-primary-200: #ece3ff,
color-primary-300: #d5bfff,
color-primary-400: #b18aff,
color-primary-500: #a16eff,
color-primary-600: #7b51db,
color-primary-700: #5a37b8,
color-primary-800: #3e2494,
color-primary-900: #29157a,
Can somebody shed some light on this for me? Since nebular 5 is based on Bootstrap framework, how do I generate these codes?