/**
 * Dustid Ecommerce - Default Theme
 * Original color scheme
 */

:root {
    /* Brand Colors */
    --primary: #947fe8; 
    --primary-dark: #7a6ddb;
    --secondary: #7209b7;
    --accent: #947fe8;

    /* Text Colors */
    --text-light: #f8f9fa;
    --text-dark: #212529;

    /* Background Colors */
    --bg-light: #F3EFEB;
    /* --bg-light: #ffffff; */
    --bg-dark: #121212;

    /* Card Colors */
    --card-light: #f8f9fa;
    --card-dark: #1e1e1e;

    /* Border Colors */
    --border-light: #dee2e6;
    --border-dark: #333333;

    /* RGB color values for alpha operations */
    --primary-rgb: 148, 127, 232;
    --secondary-rgb: 114, 9, 183;
    --accent-rgb: 148, 127, 232;
    --text-light-rgb: 248, 249, 250;
    --text-dark-rgb: 33, 37, 41;
}