mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-04 20:49:41 +05:30
34 lines
416 B
SCSS
34 lines
416 B
SCSS
|
@import '~app/components/ui/colors.scss';
|
||
|
|
||
|
.pseudoAvatar {
|
||
|
composes: minecraft-character from '~app/components/ui/icons.scss';
|
||
|
|
||
|
&0 {
|
||
|
color: $green;
|
||
|
}
|
||
|
|
||
|
&1 {
|
||
|
color: $blue;
|
||
|
}
|
||
|
|
||
|
&2 {
|
||
|
color: $violet;
|
||
|
}
|
||
|
|
||
|
&3 {
|
||
|
color: $orange;
|
||
|
}
|
||
|
|
||
|
&4 {
|
||
|
color: $dark_blue;
|
||
|
}
|
||
|
|
||
|
&5 {
|
||
|
color: $light_violet;
|
||
|
}
|
||
|
|
||
|
&6 {
|
||
|
color: $red;
|
||
|
}
|
||
|
}
|