// ============================================================================================= //
//                                            TOKENS                                             //
// ============================================================================================= //

@function attachment-values() {
    @return (
        "fixed": "fixed",
        "local": "local",
        "scroll": "scroll"
    );
}

@function clip-values() {
    @return (
        "border": "border-box",
        "content": "content-box",
        "padding": "padding-box",
        "text": "text"
    );
}

@function color-values() {
    @return (
        "inherit": "inherit",
        "current": "currentColor",
        "transparent": "transparent"
    );
}

@function image-values() {
    @return (
        "none": "none"
    );
}

@function origin-values() {
    @return (
        "border": "border-box",
        "content": "content-box",
        "padding": "padding-box"
    );
}

@function position-values() {
    @return (
        "bottom": "bottom",
        "center": "center",
        "left": "left",
        "right": "right",
        "top": "top"
    );
}

@function repeat-values() {
    @return (
        "repeat": "repeat",
        "no-repeat": "no-repeat",
        "repeat-x": "repeat-x",
        "repeat-y": "repeat-y",
        "repeat-round": "round",
        "repeat-space": "space"
    );
}

@function size-values() {
    @return (
        "auto": "auto",
        "cover": "cover",
        "contain": "contain"
    );
}
