We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chrishayuk/chuk-mcp-design-system'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Gaming theme preset - High-energy neon palette."""
from chuk_design_system.themes.base import BaseTheme, ThemeColors, ThemeMotion
GAMING_THEME = BaseTheme(
name="Gaming",
description="High-energy gaming theme with neon accents. Ideal for gaming content, esports, and entertainment.",
category="gaming",
colors=ThemeColors(
primary_hue="green",
mode="dark",
gradient="linear-gradient(135deg, #00E676 0%, #E040FB 100%)",
),
motion=ThemeMotion(
default_duration="faster",
default_easing="snappy",
default_spring="bouncy",
),
tags=["energetic", "gaming", "neon", "bold"],
)