2 Nova Design System uses a color system to guide our users, create a branded look-and-feel, draw attention to important information, and make content more accessible for everyone.
BackgroundColor Set the color of the background.
Type Default Value string null
orange-50
orange-100
orange-200
orange-300
orange-400
orange-500
orange-600
orange-700
orange-800
orange-900
<NVBlock Color ="orange-50" > orange 50</NVBlock >
<NVBlock Color ="orange-100" > orange 100</NVBlock >
<NVBlock Color ="orange-200" > orange 200</NVBlock >
<NVBlock Color ="orange-300" > orange 300</NVBlock >
<NVBlock Color ="orange-400" > orange 400</NVBlock >
<NVBlock Color ="orange-500" > orange 500</NVBlock >
<NVBlock Color ="orange-600" > orange 600</NVBlock >
<NVBlock Color ="orange-700" > orange 700</NVBlock >
<NVBlock Color ="orange-800" > orange 800</NVBlock >
<NVBlock Color ="orange-900" > orange 900</NVBlock >
<div class ="bg-orange-50" >
orange-50
</div >
<div class ="bg-orange-100" >
orange-100
</div >
<div class ="bg-orange-200" >
orange-200
</div >
<div class ="bg-orange-300" >
orange-300
</div >
<div class ="bg-orange-400" >
orange-400
</div >
<div class ="bg-orange-500" >
orange-500
</div >
<div class ="bg-orange-600" >
orange-600
</div >
<div class ="bg-orange-700" >
orange-700
</div >
<div class ="bg-orange-800" >
orange-800
</div >
<div class ="bg-orange-900" >
orange-900
</div >
ActiveBackgroundColor Set the Background Color to the element when active (eg: for Link or Button)
Type Default Value string null
active background in petrol-300
<NVButton ActiveBackgroundColor ="petrol-300" > active background in petrol-300 </NVButton >
<button class ="nv-btn nv-btn-md nv-btn-level-1 neutral active:bg-petrol-300" >
active background in petrol-300
</button >
HoverBackgroundColor Set the Background Color to the element when hovered.
Type Default Value string null
<NVBlock HoverBackgroundColor ="petrol-100" > petrol-100</NVBlock >
<div class ="hover:bg-petrol-100" > secondary-100</div >
Color Set the color of the background (almost the same as BackgroundColor expected for 5 special values (neutral, primary, secondary, success, neutral) in some components (eg: button).
Type Default Value string null
<NVButton Color ="primary" > primary </NVButton >
<NVButton Color ="petrol-100" > petrol-100 </NVButton >
<div class ="nv-btn nv-btn-md nv-btn-level-1 primary" > primary</div >
<div class ="nv-btn nv-btn-md nv-btn-level-1 bg-petrol-100" > petrol-100</div >
TextColor Set the text color to the element.
Type Default Value string null
<NVBlock TextColor ="green-500" > green-500</NVBlock >
<NVBlock TextColor ="#F00" > #F00</NVBlock >
<div class ="text-green-500" > text-green-500</div >
<div style ="color:#F00" > #F00</div >
ActiveTextColor Set the text color to the element when active.
Type Default Value string null
green-100
<NVButton ActiveTextColor ="green-100" > green-100 </NVButton >
<button class ="nv-btn nv-btn-md nv-btn-level-1 active:text-green-100" > green-100</button >
HoverTextColor Set the text color to the element when hovered.
Type Default Value string null
<NVBlock HoverTextColor ="green-100" > green-100</NVBlock >
<div class ="hover:text-green-100" > green-100</div >