mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-20 18:54:39 +10:00
31 lines
524 B
Stylus
31 lines
524 B
Stylus
// * mixins.styl
|
|
|
|
// Mixins for use in all sheets
|
|
|
|
i = !important
|
|
|
|
a(c = color-a)
|
|
if c is "visited"
|
|
c = color-a-visited
|
|
color c i
|
|
|
|
background-color(c = color-background)
|
|
if c is "highlight"
|
|
c = color-background-highlight
|
|
if c is "highlight-extra"
|
|
c = color-background-highlight-extra
|
|
background-color c i
|
|
|
|
bold()
|
|
font-weight bold i
|
|
|
|
border-color(args...)
|
|
if args
|
|
c = args
|
|
else
|
|
c = color-border
|
|
border-color c i
|
|
|
|
color(c = color-text)
|
|
color c i
|