Skip to content

Commit

Permalink
Updated default link colors for BaseWeb and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sebnitu committed Apr 4, 2015
1 parent 652241b commit 837f61a
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions docs/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -430,12 +430,12 @@ <h1>Typography Variables</h1>
<li><code>$color-header</code> <span class="right swatch swatch-gray-dark"></span></li>

<li class="title">Links</li>
<li><code>$color-link</code> <span class="right swatch swatch-blue"></span></li>
<li><code>$color-link-hover</code> <span class="right swatch swatch-violet"></span></li>
<li><code>$color-link</code> <span class="right swatch swatch-blue-dark"></span></li>
<li><code>$color-link-hover</code> <span class="right swatch swatch-yellow-green-dark"></span></li>

<li class="title">Header Links</li>
<li><code>$color-link-heading</code> <span class="right swatch swatch-blue"></span></li>
<li><code>$color-link-heading-hover</code> <span class="right swatch swatch-violet"></span></li>
<li><code>$color-link-heading</code> <span class="right swatch swatch-blue-dark"></span></li>
<li><code>$color-link-heading-hover</code> <span class="right swatch swatch-yellow-green-dark"></span></li>

<li class="title">Miscellaneous</li>
<li><code>$letter-spacing</code> <code class="right value">1px</code></li>
Expand Down
8 changes: 4 additions & 4 deletions docs/templates/pages/settings/typography.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
<li><code>$color-header</code> <span class="right swatch swatch-gray-dark"></span></li>

<li class="title">Links</li>
<li><code>$color-link</code> <span class="right swatch swatch-blue"></span></li>
<li><code>$color-link-hover</code> <span class="right swatch swatch-violet"></span></li>
<li><code>$color-link</code> <span class="right swatch swatch-blue-dark"></span></li>
<li><code>$color-link-hover</code> <span class="right swatch swatch-yellow-green-dark"></span></li>

<li class="title">Header Links</li>
<li><code>$color-link-heading</code> <span class="right swatch swatch-blue"></span></li>
<li><code>$color-link-heading-hover</code> <span class="right swatch swatch-violet"></span></li>
<li><code>$color-link-heading</code> <span class="right swatch swatch-blue-dark"></span></li>
<li><code>$color-link-heading-hover</code> <span class="right swatch swatch-yellow-green-dark"></span></li>

<li class="title">Miscellaneous</li>
<li><code>$letter-spacing</code> <code class="right value">1px</code></li>
Expand Down
8 changes: 4 additions & 4 deletions src/css/baseweb.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ h1, h2, h3, h4, h5, h6 {
line-height: 1.25em;
color: #303030; }
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
color: #2ab0ea;
color: #16a6e4;
border: 0 none; }
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
color: #bc6bd3; }
color: #a9ac16; }

h1 {
font-size: 3em; }
Expand Down Expand Up @@ -113,14 +113,14 @@ p {
* Anchors
*/
a {
color: #2ab0ea;
color: #16a6e4;
text-decoration: none;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.25s linear;
transition: all 0.25s linear; }
a:hover {
cursor: pointer;
color: #bc6bd3;
color: #a9ac16;
border-color: rgba(0, 0, 0, 0.25); }

/**
Expand Down
Loading

0 comments on commit 837f61a

Please sign in to comment.