Adding new qutebrowser configs

This commit is contained in:
Derek Taylor
2021-10-12 14:54:37 -05:00
parent fcd63c9525
commit 2994a35eee
111 changed files with 24366 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
// * index.styl
// Included in every sheet
@require "sites/generic"

View File

@@ -0,0 +1,30 @@
// * 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