Dashvar covers most of the common transition-timing-function
configurations. We recommend using the transition variables and then applying the changes to the transition-timing-function
as the following example illustrates:
.selector {
background: var(--gray-100);
transition: var(--transition-all);
transition-timing-function: var(--transition-timing-function-ease-out);
}
.selector:hover {
background: var(--yellow-200);
}
Feel free to play with this interactive example to get comfortable with the tool.