Skip to content

Commit 93b5f3a

Browse files
committed
Updating highlighting colour
1 parent 5a4928f commit 93b5f3a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

_sass/_content.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
}
2727

2828
.updated {
29-
background-color: #00aba9;
29+
background-color: $updated-bg-color;
30+
color: $updated-text-color;
3031
display: block;
3132
padding: .2em .5em;
3233
}

_sass/_variables.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $font-title: 'Segoe UI Light', 'Calibri Light', 'Arial Narrow', sans-serif;
33
$font-primary: 'Segoe UI', 'Calibri', Arial, sans-serif;
44

55
// Colors
6-
$color-accent: #E3C651;
6+
$color-accent: #EFE524;
77
$black: #1a1a1a;
88
$gray-darkest: #1e1e1e;
99
$gray-dark: #333;
@@ -14,6 +14,7 @@ $yellow: #fffac4;
1414
$white: #fff;
1515
$red: #E55065;
1616
$green: #50D174;
17+
$teal: #00aba9;
1718

1819
// Abstractions
1920
$header-bg-color: $black;
@@ -30,4 +31,7 @@ $code-border-color: $gray-light;
3031
$code-bg-color: $gray-lighter;
3132
$code-text-color: $gray-darkest;
3233

34+
$updated-bg-color: $teal;
35+
$updated-text-color: $white;
36+
3337
$form-error-color: $red;

projects.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
name: ReadableExpressions,
1717
image: ReadableExpressions.gif,
1818
description: [
19-
'Converts <a href="https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/expression-trees/" target="_blank">Expression</a> objects into readable source code',
20-
'<a href="https://marketplace.visualstudio.com/items?itemName=vs-publisher-1232914.ReadableExpressionsVisualizers" target="_blank">Debugger visualizers</a> for Visual Studio 2010 - 2019',
19+
'Converts <a href="https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/expression-trees" target="_blank">Expression</a> objects into readable source code',
20+
'<a href="https://marketplace.visualstudio.com/items?itemName=vs-publisher-1232914.ReadableExpressionsVisualizers" target="_blank">Debugger visualizers</a> for Visual Studio 2010+',
2121
'<a href="https://nuget.org/packages/AgileObjects.ReadableExpressions">NuGet</a> package for .NET 3.5+ and .NET Standard 1.0+'
2222
]
2323
},

0 commit comments

Comments
 (0)