Thunder カラーパレット
明るさ
彩度
暖かさ
UI Examples
Explore beautiful UI components with Thunder palette
Thunder カラーパレット CSS
/* CSS */
.color-1 {
color: #5a5b6c;
}
.color-2 {
color: #7b7c8e;
}
.color-3 {
color: #9fa2b2;
}
.color-4 {
color: #c3c6d5;
}
.color-5 {
color: #e6e9ef;
}
/* CSS Variables */
:root {
--color-1: #5a5b6c;
--color-2: #7b7c8e;
--color-3: #9fa2b2;
--color-4: #c3c6d5;
--color-5: #e6e9ef;
}
Thunder の背景のグラデーション CSS
/* Linear Gradient */
.linear-gradient {
background: linear-gradient(0.25turn, #5a5b6c, #7b7c8e, #9fa2b2, #c3c6d5, #e6e9ef);
}
/* Radial Gradient */
.radial-gradient {
background: radial-gradient(circle, #5a5b6c, #7b7c8e, #9fa2b2, #c3c6d5, #e6e9ef);
}
Thunder color palette created on .