Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Нужен код CSS радуги

Ноя
420
51
Пользователь
Добрый день, нужен код CSS цвета никнейма радуги который переливается как на фото

1000359371.jpg
 
Дек
293
50
Пользователь
Попробуй это


В группы пользователя ( указав свои HEX color tag )
CSS:

Код:
    animation: rainbow_animation 6s ease-in-out infinite;
background: linear-gradient(to right, #66f, #00008b, #FF8000, #008000, #8b00ff);
font-size: 1.05em;
-webkit-background-clip: text;
background-clip: text;
color: transparent !important;
text-shadow: none !important;
background-size: 400% 100%;
font-weight: bold;

В extra.less


CSS:

Код:
.custom_nickname--1 { ( 1 заменить на свой ID аккаунта на форуме )
animation: rainbow_animation 6s ease-in-out infinite;
background: linear-gradient(to right, #66f, #00008b, #FF8000, #008000, #8b00ff);
font-size: 1.05em;
-webkit-background-clip: text;
background-clip: text;
color: transparent !important;
text-shadow: none !important;
background-size: 400% 100%;
}
 
Сверху