barbican-reset 1.8.0 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,7 +39,7 @@
39
39
  }
40
40
 
41
41
  @mixin button-solid(
42
- $background: $c-brand-orange,
42
+ $background: $c-brand-generic,
43
43
  $color: $white,
44
44
  $border: 1px,
45
45
  $padding: false,
@@ -76,7 +76,7 @@
76
76
  }
77
77
 
78
78
  @mixin button-outline(
79
- $color: $c-brand-orange,
79
+ $color: $c-brand-generic,
80
80
  $background: $white,
81
81
  $border: 1px,
82
82
  $padding: false,
@@ -167,7 +167,7 @@
167
167
  @mixin btn-outline-header {
168
168
  @include button-outline(
169
169
  $color: $white,
170
- $background: $c-brand-orange,
170
+ $background: $c-brand-generic,
171
171
  $border: 0.125rem,
172
172
  $display: 'flex');
173
173
  }
@@ -0,0 +1,5 @@
1
+
2
+ $c-brand-art-x-lite: hsl(329, 100%, 99%); // 2% opacity
3
+ $c-brand-art-lite: hsl(329, 81%, 83%); // 30% opacity
4
+ $c-brand-art-medium: hsl(329, 82%, 67%); // 60% opacity
5
+ $c-brand-art: hsl(329, 100%, 45%);
@@ -0,0 +1,6 @@
1
+
2
+ $c-brand-cinema-x-lite: hsl(126, 31%, 99%); // 2% opacity
3
+ $c-brand-cinema-lite: hsl(126, 31%, 80%); // 30% opacity
4
+ $c-brand-cinema-medium: hsl(126, 31%, 60%); // 60% opacity
5
+ $c-brand-cinema: hsl(126, 62%, 33%);
6
+ $c-brand-cinema-dark: darken($c-brand-cinema, 7%);
@@ -0,0 +1,7 @@
1
+
2
+ $c-brand-classical-x-lite: hsl(38, 33%, 99%); // 2% opacity
3
+ $c-brand-classical-lite: hsl(38, 33%, 81%); // 30% opacity
4
+ $c-brand-classical-medium: hsl(38, 33%, 63%); // 60% opacity
5
+ $c-brand-classical-light: hsl(38, 53%, 95%);
6
+ $c-brand-classical: hsl(38, 53%, 38%);
7
+ $c-brand-classical-dark: hsl(38, 53%, 30%);
@@ -0,0 +1,5 @@
1
+
2
+ $c-brand-contemporary-x-lite: hsl(254, 14%, 99%); // 2% opacity
3
+ $c-brand-contemporary-lite: hsl(254, 22%, 80%); // 30% opacity
4
+ $c-brand-contemporary-medium: hsl(254, 22%, 60%); // 60% opacity
5
+ $c-brand-contemporary: hsl(254, 44%, 33%);
@@ -0,0 +1,10 @@
1
+
2
+ $c-brand-generic-x-lite: hsl(21, 67%, 99%); // 2% opacity
3
+ $c-brand-generic-faint: hsl(21, 60%, 99%);
4
+ $c-brand-generic-light: hsl(21, 100%, 95%);
5
+ $c-brand-generic-shade: hsl(21, 50%, 90%);
6
+ $c-brand-generic-lite: hsl(21, 69%, 82%); // 30% opacity
7
+ $c-brand-generic-medium: hsl(21, 69%, 65%); // 60% opacity
8
+ $c-brand-generic: hsl(21, 100%, 41%);
9
+ $c-brand-generic-dark: hsl(21, 100%, 38%);
10
+ $c-brand-generic-x-dark: hsl(21, 100%, 15%);
@@ -0,0 +1,14 @@
1
+
2
+ $c-brand-membership-x-lite: hsl(217, 60%, 99%); // 2% opacity
3
+ $c-brand-membership-lite: hsl(217, 72%, 86%); // 30% opacity
4
+ $c-brand-membership-medium: hsl(217, 72%, 72%); // 60% opacity
5
+ $c-brand-membership: hsl(217, 72%, 53%);
6
+ $c-brand-membership-dark: hsl(223, 87%, 21%);
7
+
8
+ // ------------------------------
9
+
10
+ $c-patron: $c-grey-steel;
11
+ $c-patron-light: hsl(0, 0%, 60%);
12
+
13
+ $c-principle: $c-brand-classical;
14
+ $c-principle-light: hsl(38, 53%, 53%);
@@ -0,0 +1,4 @@
1
+
2
+ $c-brand-shop-light: hsl(168, 30%, 90%);
3
+ $c-brand-shop: hsl(168, 75%, 30%);
4
+ $c-brand-shop-dark: hsl(168, 75%, 26%);
@@ -0,0 +1,5 @@
1
+
2
+ $c-brand-talks: hsl(214, 30%, 49%);
3
+ $c-brand-talks-medium: hsl(214, 30%, 69%); // 60% opacity
4
+ $c-brand-talks-lite: hsl(214, 30%, 85%); // 30% opacity
5
+ $c-brand-talks-x-lite: hsl(214, 30%, 99%); // 2% opacity
@@ -0,0 +1,5 @@
1
+
2
+ $c-brand-theatre: hsl(192, 99%, 31%);
3
+ $c-brand-theatre-medium: hsl(192, 44%, 59%); // 60% opacity
4
+ $c-brand-theatre-lite: hsl(192, 44%, 79%); // 30% opacity
5
+ $c-brand-theatre-x-lite: hsl(192, 44%, 99%); // 2% opacity
@@ -0,0 +1,12 @@
1
+
2
+ @import "generic";
3
+ @import "art";
4
+ @import "cinema";
5
+ @import "classical";
6
+ @import "contemporary";
7
+ @import "membership";
8
+ @import "shop";
9
+ @import "talks";
10
+ @import "theatre";
11
+
12
+ $c-splash-videos: hsl(0, 0%, 4%);
@@ -1,5 +1,5 @@
1
1
  @import "grey";
2
- @import "brand";
2
+ @import "brand/index";
3
3
  @import "docs";
4
4
  @import "status";
5
5
  @import "wgp";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/scss/_atomic.scss CHANGED
@@ -42,7 +42,7 @@ $paddings05: "padding-top", "padding-bottom", "padding-right", "padding-left";
42
42
  }
43
43
 
44
44
  .color-orange {
45
- color: $c-brand-orange;
45
+ color: $c-brand-generic;
46
46
  }
47
47
 
48
48
  .font-size-lg {
@@ -76,5 +76,5 @@ $paddings05: "padding-top", "padding-bottom", "padding-right", "padding-left";
76
76
  }
77
77
 
78
78
  .background-color-alt {
79
- background-color: $c-brand-orange-faint;
79
+ background-color: $c-brand-generic-faint;
80
80
  }
@@ -8,7 +8,7 @@
8
8
  }
9
9
 
10
10
  .fill {
11
- fill: $c-brand-orange-faint;
11
+ fill: $c-brand-generic-faint;
12
12
  }
13
13
  }
14
14
 
package/scss/_header.scss CHANGED
@@ -1,5 +1,5 @@
1
1
  header {
2
- background-color: $c-brand-orange;
2
+ background-color: $c-brand-generic;
3
3
 
4
4
  &.videoSplash, &.powerSplash, &.cinemaSplash, &.concertSplash, &.theatreSplash {
5
5
  display: none;
@@ -1,30 +0,0 @@
1
-
2
- $c-brand-orange-faint: hsl(21, 60%, 99%);
3
- $c-brand-orange-light: hsl(21, 100%, 95%);
4
- $c-brand-orange-shade: hsl(21, 50%, 90%);
5
- $c-brand-orange: hsl(21, 100%, 41%);
6
- $c-brand-orange-dark: hsl(21, 100%, 38%);
7
-
8
- $c-brand-cinema: hsl(126, 62%, 33%);
9
- $c-brand-cinema-dark: darken($c-brand-cinema, 7%);
10
-
11
- $c-brand-shop-light: hsl(168, 30%, 90%);
12
- $c-brand-shop: hsl(168, 75%, 30%);
13
- $c-brand-shop-dark: hsl(168, 75%, 26%);
14
-
15
- $c-brand-classical-light: hsl(38, 53%, 95%);
16
- $c-brand-classical: hsl(38, 53%, 38%);
17
- $c-brand-classical-dark: rgb(117, 89, 36);
18
-
19
- $c-splash-videos: #0a0a0a;
20
-
21
- // membership cards
22
-
23
- $c-member: #3173DD;
24
- $c-member-dark: #072162;
25
-
26
- $c-patron: $c-grey-steel;
27
- $c-patron-light: #999999;
28
-
29
- $c-principle: #906C2C;
30
- $c-principle-light: #C59540;