diff options
author | Alex Legler <alex@a3li.li> | 2015-02-27 20:03:04 +0100 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2015-02-27 20:03:04 +0100 |
commit | 0c6f1b17fe19a96c0e1a918c2c7cd314e989ffa7 (patch) | |
tree | 675d2fee6d6083c1a26ea7093d9d3806c76ffacd | |
parent | Increase <h?> sizes ever so slightly (diff) | |
download | tyrian-theme-0c6f1b17fe19a96c0e1a918c2c7cd314e989ffa7.tar.gz tyrian-theme-0c6f1b17fe19a96c0e1a918c2c7cd314e989ffa7.tar.bz2 tyrian-theme-0c6f1b17fe19a96c0e1a918c2c7cd314e989ffa7.zip |
Better visible :visited color
-rw-r--r-- | sources/css/tyrian/bootstrap/variables-tyrian.less | 1 | ||||
-rw-r--r-- | sources/css/tyrian/less/typography.less | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sources/css/tyrian/bootstrap/variables-tyrian.less b/sources/css/tyrian/bootstrap/variables-tyrian.less index 4bfcae9..ca75b1a 100644 --- a/sources/css/tyrian/bootstrap/variables-tyrian.less +++ b/sources/css/tyrian/bootstrap/variables-tyrian.less @@ -5,6 +5,7 @@ @gentoo-green: #73D216; @link-color: #36B; +@visited-link-color: #884888; @headings-font-family: 'Bitter', 'Open Sans', sans-serif; @headings-font-weight: 400; diff --git a/sources/css/tyrian/less/typography.less b/sources/css/tyrian/less/typography.less index a4cd44b..5d34a31 100644 --- a/sources/css/tyrian/less/typography.less +++ b/sources/css/tyrian/less/typography.less @@ -16,5 +16,5 @@ textarea { } .visited-links p > a:visited:not(.btn) { - color: @gentoo-purple-light2; + color: @visited-link-color; } |