Skip to content

Commit

Permalink
add ring dark theme to color palette
Browse files Browse the repository at this point in the history
$
  • Loading branch information
JeanMarcMilletScality committed Jan 22, 2024
1 parent c0c3be3 commit d4a33ef
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions stories/color.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { coreUIAvailableThemes } from '../src/lib/style/theme';

# Colors

## Dark Theme
## Artesca Dark

<ColorPalette>
{
Expand All @@ -18,7 +18,7 @@ import { coreUIAvailableThemes } from '../src/lib/style/theme';

</ColorPalette>

## Light Theme
## Artesca Light

<ColorPalette>
{
Expand All @@ -29,3 +29,15 @@ import { coreUIAvailableThemes } from '../src/lib/style/theme';
}

</ColorPalette>

## Ring Dark

<ColorPalette>
{
Object.entries(coreUIAvailableThemes.ring9dark).map(([key, value]) => {
if (!/RGB/.test(key)) return <ColorItem title={key} colors={[value]}/>;
})

}

</ColorPalette>

0 comments on commit d4a33ef

Please sign in to comment.