Pallas UI
DocsComponents
Core Concepts
    • Introduction
    • Getting Started
    • Theming
    • Color Tokens
    • Spacing & Sizing
    • Layout Guide
    • AspectRatio
    • Box
    • Flex
    • Grid
    • Shapes
Previews
    • Accordion
    • Alert
    • Avatar
    • Badge
    • Breadcrumb
    • Button
    • Carousel
    • Checkbox
    • Combobox
    • Command
    • Date Picker
    • Form
    • Input
    • Input OTP
    • Label
    • MenuBar
    • Modal
    • Popover
    • Progress
    • Radio Group
    • Segmented
    • Select
    • Separator
    • Sheet
    • Sidebar
    • Skeleton
    • Slider
    • Spinner
    • Steps
    • Switch
    • Tabs
    • Textarea
    • Toast
    • Tooltip
    • Typography
  1. Theming
  2. Color Tokens

Color Tokens

Color tokens definitions used in Pallas UI design system

Pallas UI uses a semantic color system that provides consistent theming across the entire design system.

Color System

Our color system is organized into semantic categories that represent their usage in the UI. Each color has variations for different states and emphasis levels.

Usage

Use these color tokens in your components for consistent styling:

import { css } from '@styled-system/css'
 
function Example() {
  return (
    <div
      className={css({
        color: 'text',
        bg: 'surface.container',
        borderColor: 'border',
      })}
    >
      Content with consistent colors
    </div>
  )
}

Built with ❤️ by the carbonteq team. The source code is available on GitHub.

© 2025 Pallas UI. All rights reserved.