feat(nc-gui): add onboarding flow page setup

This commit is contained in:
Ramesh Mane
2025-08-21 07:57:22 +00:00
parent fddb388bba
commit d35984e317
4 changed files with 48 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
export const onboardingFlowColoursMapping = {
brand: {
lightBg: 'bg-nc-bg-brand',
content: 'text-nc-content-brand',
},
orange: {
lightBg: 'bg-nc-bg-orange-light',
content: 'text-nc-content-orange-dark',
},
green: {
lightBg: 'bg-nc-bg-green-light',
content: 'text-nc-content-green-dark',
},
purple: {
lightBg: 'bg-nc-bg-purple-light',
content: 'text-nc-content-purple-dark',
},
pink: {
lightBg: 'bg-nc-bg-pink-light',
content: 'text-nc-content-pink-dark',
},
}