@citizenplane/pimp 10.1.0 → 10.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8080",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -1,6 +1,4 @@
1
- @use '../variables/colors' as colors;
2
1
  @use '../helpers/functions' as fn;
3
- @use '../variables/easings' as easings;
4
2
 
5
3
  // Popover
6
4
  @mixin popover-desktop($transitionName) {
@@ -1,89 +0,0 @@
1
- // CitizenPlane colors
2
- $astronaut: #3e3e5b;
3
-
4
- $gray-1: #8b8b9d;
5
- $gray-3: #c6c6ce;
6
- $gray-4: #d8d8de;
7
- $gray-5: #ececef;
8
- $gray-500: #b2b2bd;
9
-
10
- $red: #eb0505;
11
- $red-50: #fff7f7;
12
- $red-100: #ffe5e5;
13
- $red-200: #ffb3b3;
14
- $red-500: #d52841;
15
- $red-700: #710019;
16
-
17
- $blue: #144dc2;
18
- $blue-50: #f6faff;
19
- $blue-100: #e3f2ff;
20
- $blue-200: #b3d4ff;
21
- $blue-500: #1564de;
22
- $blue-700: #003382;
23
-
24
- $green: #00895c;
25
- $green-50: #ecfff4;
26
- $green-100: #e6fff4;
27
- $green-200: #b8ffdf;
28
- $green-500: #008254;
29
- $green-700: #00462b;
30
-
31
- $yellow: #ffd00b;
32
- $yellow-100: #fff9e3;
33
- $yellow-200: #ffea82;
34
- $yellow-300: #ffea82;
35
- $yellow-500: #998700;
36
-
37
- $orange: #ffa800;
38
- $orange-50: #fff8f2;
39
- $orange-100: #fff4e3;
40
- $orange-200: #ffe0a3;
41
- $orange-500: #a05800;
42
- $orange-600: #d17a00;
43
- $orange-700: #582e00;
44
-
45
- $purple: #5341f9;
46
- $purple-100: #e5e3ff;
47
- $purple-200: #c8c4ff;
48
- $purple-500: #5341f9;
49
- $purple-600: #4b3ad0;
50
- $purple-700: #3400a0;
51
-
52
- $pink: #ff7dc1;
53
- $pink-100: #ffe6f2;
54
- $pink-200: #ffcce6;
55
- $pink-500: #ff7dc1;
56
-
57
- $green-2: #00c582;
58
- $green-1: #00f8a4;
59
-
60
- $blue-1: #56c1fe;
61
-
62
- // Main colors
63
- $primary-color: $purple;
64
- $secondary-color: $blue;
65
- $tertiary-color: $pink;
66
-
67
- // Accent colors
68
- $error-color: $red;
69
- $warning-color: $orange;
70
- $success-color: $green-2;
71
- $success-color-light: $green-1;
72
- $accent-color-1: $blue-1;
73
-
74
- // Neutral colors
75
- $neutral-dark: $astronaut;
76
-
77
- // Gray
78
- $neutral-dark-1: $gray-1;
79
- $neutral-dark-2: $gray-500;
80
- $neutral-dark-3: $gray-3;
81
- $neutral-dark-4: $gray-4;
82
- $neutral-dark-5: $gray-5;
83
-
84
- // White
85
- $neutral-light: #ffffff;
86
- $neutral-light-1: #f9fafc;
87
-
88
- // Border colors
89
- $border-color: $neutral-dark-4;
@@ -1 +0,0 @@
1
- $easing-elastic: cubic-bezier(0.34, 1.66, 0.64, 1);
@@ -1,10 +0,0 @@
1
- @use 'sass:math';
2
- @use '../helpers/functions' as fn;
3
-
4
- $space: fn.px-to-rem(8);
5
-
6
- $space-xs: math.div($space, 4);
7
- $space-sm: math.div($space, 2);
8
- $space-md: $space * 1.5;
9
- $space-lg: $space * 2;
10
- $space-xl: $space * 3;