Code icon

SASS - VARIABLES

Links


    // Sass Variables
    They compile to the normal value, not to css variables

    Use of $
    
    $primary-color: #272727;
    $accent-color: #ff652f;
    body {background: $accent-color;}