Overview
- Getting Started
- Loading States
- Forms
- Feature Flags
- Portal
- Show
- For
- Text
- Toggle
- Local Storage
Actions
- Button
- Icon Button
Communication
- Admonition
- Accordion
- Avatar
- Notifications
- Progress Indicators
- Tag
- Tooltip
Containment
- Confirm Modal
- Prompt Modal
- CTA Modal
- Modaldeprecated
- Dialog
- Table
Navigation
- Menu
- Tabs
Selection
- Drag & Drop
- Checkbox
- Date Picker
- Radio
- Rating
- Select
- Combobox
- Switch
Inputs
- Field
- Input
- Textarea
- Labeldeprecated
- Fieldset
- Field Messagedeprecated
- File Uploader
Hooks & Helpers
- split-props
- trap-focusdeprecated
- use-root-colors
- use-theme
- use-theme-context
- use-toggledeprecated
useRootColors
Get Cerberus colors from the document root.
1import { useRootColors } from '@cerberus/react'
This hook allows you to access Cerberus colors from the document root which is useful when you want to use Cerberus colors within a canvas
element.
Usage
This is adding data-viz colors to a canvas element.
Advanced Usage
If you need to get the latest colors when a user changes the color mode or theme, you can use the refetch
function to get the latest colors from the document root.
1'use client'2
3import { useRootColors, useTheme } from '@cerberus/react'4import { useEffect, useState } from 'react'5
6const initialSettings = {...stuffFromXChartLibrary}7
8const colorList = [9 'dataViz.diverging.50',10 'dataViz.diverging.100',11 'dataViz.diverging.200',12]13
14function SomeChart() {15 const [settings, setOptions] = useState(initialSettings)16
17 const { theme } = useTheme()18 const { colors, refetch } = useRootColors(colorList)19
20 useEffect(() => {21 if (window && theme) {22 // We need to wait for the theme to be applied to the root element23 setTimeout(async () => {24 await refetch()25 }, 10)26 }27 }, [theme, refetch])28
29 useEffect(() => {30 const start = colors[colorList[0]]31 setOptions((prev) => ({32 ...prev,33 background: {34 image: `radial-gradient(75% 82% at 52% 100%, ${start}40 0%, transparent 100%)`,35 },36 }))37 }, [colors])38
39 return (40 <SomeChartLib settings={settings} />41 )42}
API
export interface RootColorsResult { colors: Record<string, string> refetch: () => void}
define function useRootColors(colors: string[] = []): RootColorsResult
Arguments
The useRootColors
hook accepts the following optional arguments:
Name | Default | Description |
---|---|---|
colors | An array of Cerberus color keys to retrieve. | |
refetch | A function to refetch the colors from the root. |
Return
The useRootColors
hook returns a memoized object with the same properties as the options object passed in.
1{2 colors: {3 'dataViz.diverging.50': '#F7F7F7',4 'dataViz.diverging.100': '#E5E5E5',5 'dataViz.diverging.200': '#C6C6C6',6 },7 refetch: () => void8}
On this page