Skip to content

Commit 39ad7b5

Browse files
authored
Merge pull request #862 from endlessm/725-theme-colors
Theme: Change secondary color
2 parents b5e403d + 17a3558 commit 39ad7b5

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

kolibri_explore_plugin/assets/src/components/DiscoveryNavBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
192192
.discovery-tab {
193193
&.active {
194-
border-bottom: 2px solid $secondary;
194+
border-bottom: 2px solid $endless-orange;
195195
}
196196
}
197197

packages/ek-components/src/components/EkTopicCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}"
99
>
1010
<EkContentLink :url="url" @isHovered="(hovered) => isHovered = hovered">
11-
<b-card-body class="bg-primary">
11+
<b-card-body class="bg-secondary">
1212
<div
1313
class="card-img"
1414
:class="{ 'low-quality': isLowQuality, 'is-thumbnail-wide': isThumbnailWide }"
@@ -39,7 +39,7 @@
3939
<span class="channel-title subtitle text-truncate">{{ node.channel.title }}</span>
4040
</div>
4141
<div v-else>
42-
<b-badge pill variant="primary">
42+
<b-badge pill variant="secondary">
4343
<BundleIcon :size="20" />
4444
{{ $tr('exploreBadge') }}
4545
</b-badge>

packages/ek-components/src/styles.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Bootstrap theme variables:
2-
$secondary: #F15A22;
2+
$secondary: #064987;
33
$gray-300: #F8F7F3;
44
$gray-400: #ECE8E3;
55
$gray-500: #A1A8A9;
@@ -11,6 +11,7 @@ $primary: $gray-800;
1111
$light: $gray-300;
1212
$dark: $gray-600;
1313

14+
$endless-orange: #F15A22;
1415
$orange: #FF9741;
1516
$yellow: #F5BD2C;
1617
$teal: #14BF96;

0 commit comments

Comments
 (0)