Skip to content

Commit

Permalink
Add annotation rule in color scss
Browse files Browse the repository at this point in the history
  • Loading branch information
giacomocerre committed Apr 24, 2021
1 parent 0f3deed commit da6a228
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/assets/scss/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ $editionColors: (
versesBackground: #800000,
versesColor: #ffffff,
versesBorder: #000000,
highlightColor: #ffffcc
highlightColor: #ffffcc,
annotations: (
buttonColors: #FFFFFF
)
);

@function get-color($key) {
Expand All @@ -33,4 +36,8 @@ $editionColors: (

@function get-ne-color($key) {
@return get-color(namedEntities $key);
}

@function get-anno-color($key){
@return get-color(annotations $key);
}

0 comments on commit da6a228

Please sign in to comment.