Color tokens for Ivy-Framework with light and dark theme support.
npm
npm install ivy-design-system.NET
dotnet add package Ivy.DesignSystem@import "ivy-design-system/css/ivy-framework";
@import "ivy-design-system/css/light";
.button {
background: var(--color-primary);
color: var(--color-primary-foreground);
}import ivyTokens from "ivy-design-system/tailwind/ivy-framework";
export default {
...ivyTokens,
content: ["./src/**/*.{js,jsx,ts,tsx}"],
};import { tokens } from "ivy-design-system";
const primary = tokens["color-primary"];using Ivy.Themes;
var primary = IvyFrameworkTokens.Color.Primary;
var background = LightThemeTokens.Color.Background;- Semantic: primary, secondary, destructive, success, warning, info
- UI: background, foreground, border, input, ring, muted, accent, card, popover
- All tokens include foreground variants
- Light and dark theme support
Tokens are defined in figma-tokens/$tokens.json and exported to CSS, Tailwind, TypeScript, and C#.
npm install
npm run buildMIT © Ivy Interactive