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

@function content-values() {
    @return (
        "start": "start",
        "end": "end",
        "center": "center",
        "space-between": "space-between",
        "space-around": "space-around",
        "space-evenly": "space-evenly"
    );
}

@function items-values() {
    @return (
        "start": "start",
        "end": "end",
        "center": "center",
        "baseline": "baseline",
        "stretch": "stretch"
    );
}

@function self-values() {
    @return (
        "auto": "auto",
        "start": "start",
        "end": "end",
        "center": "center",
        "stretch": "stretch",
        "baseline": "baseline"
    );
}
