/*
Theme Name: HTML Editor Theme
Description: A theme that allows rendering HTML files directly without WordPress header/footer
Version: 3.2
Author: Aif Arman
Text Domain: html-editor-theme
*/

/* 
    CSS Custom Properties (Variables) for Theme Colors:
    --theme-primary: #0073aa 
    --theme-secondary: #005177 
    --theme-accent: #f0f8ff 
    
    RGB equivalents for transparency effects:
    --theme-primary-rgb: 0, 115, 170
    --theme-accent-rgb: 240, 248, 255
    
    Note: These color values are used throughout the theme.
    Consider defining these as CSS custom properties in :root for consistency.
*/


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #0073aa;
}


