14 lines
220 B
Nix
14 lines
220 B
Nix
{ web, ... }:
|
|
{ ... }:
|
|
let
|
|
inherit(web.css) CSS;
|
|
in
|
|
CSS
|
|
{
|
|
body
|
|
= {
|
|
background.color = "#222";
|
|
color = "#f80";
|
|
};
|
|
}
|