Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dist/stylesheets/doi.css
Original file line number Diff line number Diff line change
Expand Up @@ -20514,7 +20514,7 @@ h3.member > a, .member.h3 > a, h3.member > i, .member.h3 > i, h3.member > .btn-i
.footer {
width: 100%;
font-size: 16px;
color: #a3acb2;
color: #243B54;
background-color: #f9fafa;
padding: 0.75em 0;
margin: 0;
Expand All @@ -20529,7 +20529,7 @@ h3.member > a, .member.h3 > a, h3.member > i, .member.h3 > i, h3.member > .btn-i
padding-left: 0;
}
.footer a, .footer a:hover, .footer a:visited {
color: #a3acb2;
color: #243B54;
}
.footer h4.share, .footer .share.h4 {
margin-bottom: 0.5em;
Expand Down Expand Up @@ -20562,7 +20562,7 @@ h3.member > a, .member.h3 > a, h3.member > i, .member.h3 > i, h3.member > .btn-i
}
.footer .color-description {
font-size: 18px;
color: #a3acb2;
color: #243B54;
}

.dropdown-menu {
Expand Down
2 changes: 1 addition & 1 deletion dist/stylesheets/doi.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/stylesheets/doi.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/stylesheets/doi.min.css.map

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions src/stylesheets/_datacite_colors.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// DataCite Design Manual v2.1 - Brand Colors
// https://datacite.org/wp-content/uploads/2024/06/DataCite_Design_manual-version_2_1.pdf

// Primary colors
$datacite-primary-dark-blue: #243B54 !default;
$datacite-primary-light-blue: #00B1E2 !default;

// Secondary colors (use in combination with primary dark blue)
$datacite-secondary-grey: #C0CED6 !default;
$datacite-secondary-turquoise: #46BCAB !default;
$datacite-secondary-light-red: #F07C73 !default;

// Additional colors
$datacite-medium-blue: #0D60D4 !default;
$datacite-dark-pink: #BC2B66 !default;
$datacite-lime: #E2E254 !default;

// Gradient endpoints (for backgrounds, infographics)
$datacite-gradient-start: $datacite-primary-light-blue !default;
$datacite-gradient-end: #243B53 !default;
1 change: 1 addition & 0 deletions src/stylesheets/doi.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Datacite - Bootstrap 5 theme
// @import "../../node_modules/bootstrap/scss/responsive-utilities";

// Globals
@import "datacite_colors";
@import "doi/globals/colors";
@import "doi/globals/variables";
@import "doi/globals/mixins";
Expand Down
6 changes: 3 additions & 3 deletions src/stylesheets/doi/components/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
.footer {
width: 100%;
font-size: 16px;
color: $dark-gray;
color: $datacite-primary-dark-blue;
background-color: $lighter-gray;
padding: .75em 0;
margin: 0;
Expand All @@ -20,7 +20,7 @@
padding-left: 0;
}
a, a:hover, a:visited {
color: $dark-gray;
color: $datacite-primary-dark-blue;
}
h4.share {
margin-bottom: .5em;
Expand Down Expand Up @@ -55,6 +55,6 @@

.color-description {
font-size: 18px;
color: $dark-gray;
color: $datacite-primary-dark-blue;
}
}