ryde/source/style/default.less
2026-03-06 08:37:53 +01:00

41 lines
481 B
Plaintext

@hue: 150;
html
{
background-color: hsv(@hue, 0%, 0%);
color: hsv(@hue, 0%, 100%);
font-family: monospace;
}
body
{
/*
background-color: hsv(@hue, 0%, 25%);
color: hsv(@hue, 0%, 75%);
*/
}
.formfield
{
& > input,
& > button
{
font-family: monospace;
text-transform: uppercase;
}
& > input
{
background-color: hsv(@hue, 0%, 75%);
color: hsv(@hue, 0%, 0%);
}
& > button
{
background-color: hsv(@hue, 75%, 50%);
color: hsv(@hue, 0%, 100%);
}
}