/* ================================================
   SAKURA CODE THEME
   Cherry blossom meets code aesthetic
   ================================================ */

:root {
    /* Primary Colors */
    --theme-primary: #f7768e;
    --theme-primary-rgb: 247, 118, 142;
    
    /* Secondary Colors */
    --theme-secondary: #9d7cd8;
    --theme-secondary-rgb: 157, 124, 216;
    
    /* Accent Colors */
    --theme-accent: #e0af68;
    --theme-accent-rgb: 224, 175, 104;
    
    /* Text Colors */
    --theme-text: #d5d6db;
    --theme-text-rgb: 213, 214, 219;
    
    /* Background Colors */
    --theme-bg: #16161e;
    --theme-bg-rgb: 22, 22, 30;
    
    --theme-dark: #0d0d0d;
    --theme-dark-rgb: 13, 13, 13;
    
    /* Legacy compatibility */
    --sakura-primary: #f7768e;
    --sakura-secondary: #9d7cd8;
    --sakura-accent: #e0af68;
    --sakura-text: #d5d6db;
    --sakura-bg: #16161e;
    --sakura-dark: #0d0d0d;
}

