Color Schemes

Browse all built-in color schemes used in Boreal UI. Select a theme to filter results.

Data table
Value
Autumn GlowprimaryColor#c58686
Autumn GlowsecondaryColor#CC8430
Autumn GlowtertiaryColor#b19476
Autumn GlowquaternaryColor#b9a27b
Autumn GlowbackgroundColor#F5F5F5
Autumn LeavesprimaryColor#d2691e
Autumn LeavessecondaryColor#c56c2c
Autumn LeavestertiaryColor#a0522d
Autumn LeavesquaternaryColor#e9a569
Autumn LeavesbackgroundColor#f5f5dc
Berry BurstprimaryColor#b57077
Berry BurstsecondaryColor#9183a3
Berry BursttertiaryColor#78666D
Berry BurstquaternaryColor#bb959b
Berry BurstbackgroundColor#EDEDED
Berry PatchprimaryColor#d31212
Berry PatchsecondaryColor#be4343
Berry PatchtertiaryColor#ff6347
Berry PatchquaternaryColor#ff8c00
Berry PatchbackgroundColor#4d3e3e
Citrus ZestprimaryColor#ffa500
Citrus ZestsecondaryColor#ff4500
Citrus ZesttertiaryColor#ff6347
Citrus ZestquaternaryColor#ffa07a
Citrus ZestbackgroundColor#ffffff
Coral ReefprimaryColor#ff6f61
Coral ReefsecondaryColor#b8774c
Coral ReeftertiaryColor#d4a25d
Coral ReefquaternaryColor#aa8181
Coral ReefbackgroundColor#f0f0f0
Cyberpunk PulseprimaryColor#792348ff
Cyberpunk PulsesecondaryColor#8338ec
Cyberpunk PulsetertiaryColor#4f1bca
Cyberpunk PulsequaternaryColor#fb5607
Cyberpunk PulsebackgroundColor#000000ff
Eclipse NightprimaryColor#6e728a
Eclipse NightsecondaryColor#636374
Eclipse NighttertiaryColor#989bad
Eclipse NightquaternaryColor#a58aff
Eclipse NightbackgroundColor#2b2b2b
Electric VioletprimaryColor#9c3ef5
Electric VioletsecondaryColor#983fbe
Electric ViolettertiaryColor#b071dd
Electric VioletquaternaryColor#bb30bb
Electric VioletbackgroundColor#464355
Forest DuskprimaryColor#286d52
Forest DusksecondaryColor#725431
Forest DusktertiaryColor#2c7160
Forest DuskquaternaryColor#a0865c
Forest DuskbackgroundColor#222e2e
Golden HourprimaryColor#B58800
Golden HoursecondaryColor#9574cc
Golden HourtertiaryColor#B5A163
Golden HourquaternaryColor#a38cd1
Golden HourbackgroundColor#dbdbd9
Lavender MistprimaryColor#b4b4c7
Lavender MistsecondaryColor#af87ff
Lavender MisttertiaryColor#a491c9
Lavender MistquaternaryColor#bba1bb
Lavender MistbackgroundColor#f5f5f5
Lime PlumprimaryColor#50801a
Lime PlumsecondaryColor#735992
Lime PlumtertiaryColor#96ac38
Lime PlumquaternaryColor#8E7CC3
Lime PlumbackgroundColor#382650
Midnight BloomprimaryColor#6b16c0
Midnight BloomsecondaryColor#be4984
Midnight BloomtertiaryColor#8b008b
Midnight BloomquaternaryColor#c21d75
Midnight BloombackgroundColor#1c1c1c
Mint ChocolateprimaryColor#215542
Mint ChocolatesecondaryColor#1e683e
Mint ChocolatetertiaryColor#2f725c
Mint ChocolatequaternaryColor#6199af
Mint ChocolatebackgroundColor#221504
Minty FreshprimaryColor#53b953
Minty FreshsecondaryColor#3eb489
Minty FreshtertiaryColor#5aa88e
Minty FreshquaternaryColor#8ba7a5
Minty FreshbackgroundColor#c6dfdb
Ocean BreezeprimaryColor#02a899
Ocean BreezesecondaryColor#de6559
Ocean BreezetertiaryColor#729E9A
Ocean BreezequaternaryColor#ffa17f
Ocean BreezebackgroundColor#d9dbd9
Ocean DepthsprimaryColor#0077be
Ocean DepthssecondaryColor#177081
Ocean DepthstertiaryColor#0a9396
Ocean DepthsquaternaryColor#7bb19f
Ocean DepthsbackgroundColor#2e3133
Rose MidnightprimaryColor#ad0747
Rose MidnightsecondaryColor#0a5a94
Rose MidnighttertiaryColor#C7004B
Rose MidnightquaternaryColor#347192
Rose MidnightbackgroundColor#0B1220
Rose QuartzprimaryColor#d98768
Rose QuartzsecondaryColor#a37981
Rose QuartztertiaryColor#806868
Rose QuartzquaternaryColor#f1b8a0
Rose QuartzbackgroundColor#f7f4f2
Sapphire StormprimaryColor#0f52ba
Sapphire StormsecondaryColor#526d91
Sapphire StormtertiaryColor#4a6fa5
Sapphire StormquaternaryColor#8597a8
Sapphire StormbackgroundColor#000000
Sunrise GlowprimaryColor#ff4500
Sunrise GlowsecondaryColor#ff6347
Sunrise GlowtertiaryColor#ff7f50
Sunrise GlowquaternaryColor#d8b699
Sunrise GlowbackgroundColor#ffffff
SunsetprimaryColor#7f4ac4
SunsetsecondaryColor#7d533b
SunsettertiaryColor#b372d2
SunsetquaternaryColor#C68559
SunsetbackgroundColor#2b2b2b
Tropical SunriseprimaryColor#DAA200
Tropical SunrisesecondaryColor#d9a76c
Tropical SunrisetertiaryColor#AD8A59
Tropical SunrisequaternaryColor#e5cb9b
Tropical SunrisebackgroundColor#fcfbf7
Vintage EmberprimaryColor#D4AA7D
Vintage EmbersecondaryColor#9e8d8d
Vintage EmbertertiaryColor#B78457
Vintage EmberquaternaryColor#ffdcb0
Vintage EmberbackgroundColor#c2bfbf

Add a Custom Color Scheme

You can define your own color palette by passing an array of custom schemes to the ThemeProvider using the customSchemes prop:

"use client";
import { ThemeProvider } from "boreal-ui";

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <ThemeProvider customSchemes={[{
      name: "Cyberpunk Pulse",
      primaryColor: "#792348ff",
      secondaryColor: "#8338ec",
      tertiaryColor: "#3a0ca3",
      quaternaryColor: "#fb5607",
      backgroundColor: "#000000ff",
    }]}>
      {children}
    </ThemeProvider>
  );
}

Then, set this scheme as the default using the setBorealStyleConfig API:

setBorealStyleConfig({
  defaultColorSchemeName: "Cyberpunk Pulse",
});