@magicgol/polyjuice 0.16.1 → 0.16.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magicgol/polyjuice",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -4,6 +4,7 @@ $palette: (
4
4
  'freemium' :#004781,
5
5
  'coin': #ffcf73,
6
6
  'expertClub': #075169,
7
+ 'text': #343434,
7
8
  // ALERT
8
9
  'error': #ed4949,
9
10
  'warning': #ff614c,
@@ -18,6 +18,7 @@ export default {
18
18
 
19
19
  <style lang="scss">
20
20
  .mg-h1 {
21
+ color: #343434;
21
22
  font-family: 'Ubuntu', sans-serif;
22
23
  font-size: 1.25rem;
23
24
  font-weight: 500;
@@ -0,0 +1,10 @@
1
+ import {ColorItem, ColorPalette, Meta} from '@storybook/addon-docs';
2
+
3
+ <Meta title="Colors/Brand" />
4
+
5
+ <ColorPalette>
6
+ <ColorItem
7
+ title="Text"
8
+ colors={{'Mine Shaft': '#343434'}}
9
+ />
10
+ </ColorPalette>