spoko-design-system 0.0.1 → 0.0.5

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.
Files changed (113) hide show
  1. package/.astro/icon.d.ts +8109 -10
  2. package/.github/workflows/deploy.yml +39 -39
  3. package/.stackblitzrc +5 -5
  4. package/.vscode/extensions.json +5 -4
  5. package/.vscode/launch.json +11 -11
  6. package/.vscode/settings.json +6 -0
  7. package/LICENSE +21 -21
  8. package/Layout/Header.astro +111 -89
  9. package/README.md +94 -69
  10. package/astro-i18next.config.mjs +17 -17
  11. package/astro-i18next.config.ts +10 -10
  12. package/astro.config.mjs +51 -42
  13. package/index.ts +6 -6
  14. package/package.json +25 -17
  15. package/public/astro-design-system-logo.svg +10 -10
  16. package/public/favicon.ico +0 -0
  17. package/public/favicon.svg +0 -0
  18. package/public/fonts/lg.svg +53 -53
  19. package/public/fonts/vwhead-bold-demo.html +549 -549
  20. package/public/fonts/vwhead-regular-demo.html +549 -549
  21. package/public/fonts/vwtext-bold-demo.html +549 -549
  22. package/public/fonts/vwtext-regular-demo.html +549 -549
  23. package/public/github.svg +3 -3
  24. package/public/grid_dot.svg +4 -4
  25. package/public/linkedin.svg +44 -44
  26. package/public/locales/en/translation.json +8 -5
  27. package/public/locales/pl/translation.json +8 -5
  28. package/public/make-scrollable-code-focusable.js +3 -3
  29. package/public/polo.blue.svg +29 -0
  30. package/public/spoko.space.svg +71 -0
  31. package/public/twitter.svg +46 -46
  32. package/sandbox.config.json +11 -11
  33. package/src/MyComponent.astro +8 -8
  34. package/src/components/Badge.vue +19 -19
  35. package/src/components/Badges.vue +24 -23
  36. package/src/components/Breadcrumbs.vue +108 -111
  37. package/src/components/Button.vue +37 -0
  38. package/src/components/ButtonCopy.vue +52 -0
  39. package/src/components/Card.astro +25 -0
  40. package/src/components/CategoryLink.astro +18 -0
  41. package/src/components/Copyright.astro +11 -11
  42. package/src/components/Date.astro +7 -0
  43. package/src/components/FuckRussia.vue +65 -65
  44. package/src/components/HandDrive.astro +29 -30
  45. package/src/components/HeadCommon.astro +40 -40
  46. package/src/components/HeadSEO.astro +41 -41
  47. package/src/components/Header/AstroLogo.astro +7 -27
  48. package/src/components/Header/Header.astro +44 -48
  49. package/src/components/Header/SkipToContent.astro +1 -1
  50. package/src/components/Headline.vue +60 -0
  51. package/src/components/Image.astro +30 -0
  52. package/src/components/Jumbatron.vue +46 -31
  53. package/src/components/LeftSidebar.astro +45 -44
  54. package/src/components/MainColors.vue +29 -29
  55. package/src/components/MainInput.vue +18 -18
  56. package/src/components/MainTable.vue +40 -45
  57. package/src/components/Modal.astro +30 -0
  58. package/src/components/PageContent.astro +14 -14
  59. package/src/components/PostHeader.astro +104 -0
  60. package/src/components/PrCode.vue +156 -0
  61. package/src/components/ProductNumber.astro +117 -0
  62. package/src/components/ProductTile.astro +54 -0
  63. package/src/components/RightSidebar.astro +15 -11
  64. package/src/components/SlimBanner.vue +59 -59
  65. package/src/components/TableOfContents.astro +11 -11
  66. package/src/components/Translations.vue +27 -0
  67. package/src/components/flags/FlagPL.vue +2 -2
  68. package/src/components/flags/FlagUA.vue +2 -2
  69. package/src/components/layout/Header.astro +50 -69
  70. package/src/config.ts +51 -42
  71. package/src/design.config.ts +73 -92
  72. package/src/env.d.ts +1 -1
  73. package/src/flag-poland.svg +1 -0
  74. package/src/flag-uk.svg +1 -0
  75. package/src/layouts/Layout.astro +43 -0
  76. package/src/layouts/MainLayout.astro +60 -50
  77. package/src/pages/components/badges.mdx +69 -35
  78. package/src/pages/components/breadcrumbs.mdx +136 -103
  79. package/src/pages/components/buttons.mdx +143 -60
  80. package/src/pages/components/card.mdx +40 -0
  81. package/src/pages/components/copyright.mdx +41 -24
  82. package/src/pages/components/flags.mdx +40 -26
  83. package/src/pages/components/fuck-russia.mdx +39 -16
  84. package/src/pages/components/hand-drive.mdx +38 -27
  85. package/src/pages/components/headline.mdx +148 -0
  86. package/src/pages/components/icons.astro +54 -45
  87. package/src/pages/components/image.mdx +502 -0
  88. package/src/pages/components/input.mdx +45 -14
  89. package/src/pages/components/jumbatron.mdx +71 -48
  90. package/src/pages/components/modal.mdx +64 -0
  91. package/src/pages/components/post-header.mdx +58 -0
  92. package/src/pages/components/pr-code.mdx +41 -0
  93. package/src/pages/components/product-number.mdx +65 -0
  94. package/src/pages/components/product-tile.mdx +39 -0
  95. package/src/pages/components/slimbanner.mdx +29 -27
  96. package/src/pages/components/table.mdx +39 -20
  97. package/src/pages/core/colors.mdx +8 -8
  98. package/src/pages/core/introduction.mdx +74 -68
  99. package/src/pages/core/shadows.astro +20 -20
  100. package/src/pages/core/typography.astro +46 -46
  101. package/src/pages/index.astro +70 -52
  102. package/src/pages/patterns/introduction.mdx +60 -61
  103. package/src/styles/_variables.scss +75 -75
  104. package/src/styles/base/_base.scss +166 -158
  105. package/src/styles/base/_typography.scss +147 -147
  106. package/src/styles/content.scss +66 -71
  107. package/src/styles/main.scss +22 -22
  108. package/tailwind.config.cjs +8 -8
  109. package/tsconfig.json +11 -11
  110. package/uno.config.ts +246 -227
  111. package/src/components/MainButton.vue +0 -26
  112. package/src/components/MainStatusPill.vue +0 -32
  113. package/src/pages/components/status-pill.mdx +0 -22
@@ -1,21 +1,21 @@
1
- ---
2
- import MainLayout from '../../layouts/MainLayout.astro';
3
- import { SHADOWS } from '../../design.config'
4
-
5
- ---
6
-
7
- <MainLayout>
8
- <h1>Shadows</h1>
9
- <div class="component-preview">
10
- <div class="inline-grid grid-cols-2 gap-16">
11
- {SHADOWS.types.map(({name, value}) => (
12
- <div class="p-2 bg-white rounded-md text-slate-500 text-right pt-16 pl-24 font-mono" style={"box-shadow: " + value}>{name}</div>
13
- ))}
14
- </div>
15
- </div>
16
- <pre class="astro-code bg-slate-800 text-white">
17
- {SHADOWS.types.map(({name, value}) => (
18
- <div class="my-2">{`${name}: ${value}`}</div>
19
- ))}
20
- </pre>
1
+ ---
2
+ import MainLayout from '../../layouts/MainLayout.astro';
3
+ import { SHADOWS } from '../../design.config'
4
+
5
+ ---
6
+
7
+ <MainLayout>
8
+ <h1>Shadows</h1>
9
+ <div class="component-preview">
10
+ <div class="inline-grid grid-cols-2 gap-16">
11
+ {SHADOWS.types.map(({name, value}) => (
12
+ <div class="p-2 bg-white rounded-md text-slate-500 text-right pt-16 pl-24 font-mono" style={"box-shadow: " + value}>{name}</div>
13
+ ))}
14
+ </div>
15
+ </div>
16
+ <pre class="astro-code bg-slate-800 text-white">
17
+ {SHADOWS.types.map(({name, value}) => (
18
+ <div class="my-2">{`${name}: ${value}`}</div>
19
+ ))}
20
+ </pre>
21
21
  </MainLayout>
@@ -1,47 +1,47 @@
1
- ---
2
- import MainLayout from '../../layouts/MainLayout.astro'
3
- import { TYPOGRAPHY } from '../../design.config'
4
- import { FONTS } from '../../design.config'
5
- const getStyle = (item) => {
6
- return `font-size: ${item.size}; font-weight: ${item.weight};`
7
- }
8
- ---
9
-
10
- <MainLayout>
11
- <h1>Typography</h1>
12
- <div class="w-full">
13
- {
14
- TYPOGRAPHY.scale.map((item) => (
15
- <div class="mt-6 border-t py-4">
16
- <p style={getStyle(item)}>Hello world</p>
17
- <div class="flex gap-6 text-slate-500 font-mono">
18
- <span>{item.name}</span>
19
- <span>weight: {item.weight}</span>
20
- <span>size: {item.size}</span>
21
- </div>
22
- </div>
23
- ))
24
- }
25
- </div>
26
-
27
-
28
-
29
- <h1>Fonts</h1>
30
- <div class="component-preview ">
31
- <div class="flex flex-wrap gap-16">
32
- {FONTS.types.map(({name, value}) => (
33
- <div class="w-full">
34
- <div class={`${value} text-3xl`} >Lorem Ipsum</div>
35
- <div class="">{name}</div>
36
- </div>
37
- ))}
38
- </div>
39
- </div>
40
-
41
- <pre class="astro-code bg-slate-800 text-white">
42
- {FONTS.types.map(({name, value}) => (
43
- <div class="my-5">{`${name}:`}<br><pre>{value}</pre></div>
44
- ))}
45
- </pre>
46
-
1
+ ---
2
+ import MainLayout from '../../layouts/MainLayout.astro'
3
+ import { TYPOGRAPHY } from '../../design.config'
4
+ import { FONTS } from '../../design.config'
5
+ const getStyle = (item) => {
6
+ return `font-size: ${item.size}; font-weight: ${item.weight};`
7
+ }
8
+ ---
9
+
10
+ <MainLayout>
11
+ <h1>Typography</h1>
12
+ <div class="w-full">
13
+ {
14
+ TYPOGRAPHY.scale.map((item) => (
15
+ <div class="mt-6 border-t py-4">
16
+ <p style={getStyle(item)}>Hello world</p>
17
+ <div class="flex gap-6 text-slate-500 font-mono">
18
+ <span>{item.name}</span>
19
+ <span>weight: {item.weight}</span>
20
+ <span>size: {item.size}</span>
21
+ </div>
22
+ </div>
23
+ ))
24
+ }
25
+ </div>
26
+ <div class="font-novamono"></div>
27
+
28
+
29
+ <h1>Fonts</h1>
30
+ <div class="component-preview ">
31
+ <div class="flex flex-wrap gap-16">
32
+ {FONTS.types.map(({name, value}) => (
33
+ <div class="w-full">
34
+ <div class={`${value} text-3xl`} >Lorem Ipsum</div>
35
+ <div class="">{name}</div>
36
+ </div>
37
+ ))}
38
+ </div>
39
+ </div>
40
+
41
+ <pre class="astro-code bg-slate-800 text-white">
42
+ {FONTS.types.map(({name, value}) => (
43
+ <div class="my-5">{`${name}:`}<br><pre>{value}</pre></div>
44
+ ))}
45
+ </pre>
46
+
47
47
  </MainLayout>
@@ -1,52 +1,70 @@
1
- ---
2
- import { SITE } from "../config";
3
- const navItems = [
4
- {
5
- title: 'Core',
6
- description: 'Base colors, typography, shadows, and more.',
7
- url: '/core/introduction',
8
- img: '/Core.jpg'
9
- },
10
- {
11
- title: 'Components',
12
- description: 'The building blocks for our UI.',
13
- url: '/components/buttons',
14
- img: '/Components.jpg'
15
- },
16
- {
17
- title: 'Patterns',
18
- description: 'Common patterns for building interfaces.',
19
- url: '/patterns/introduction',
20
- img: '/Patterns.jpg'
21
- }
22
- ]
23
-
24
- ---
25
-
26
-
27
-
28
- <div class="bg-slate-100 min-h-screen text-center">
29
- <header class="pt-12 pb-24 px-4 bg-gradient-to-br from-slate-700 to-black">
30
- <div class="flex items-center justify-center p-4">
31
- <img src="/astro-design-system-logo.svg" alt="Astro Design System Logo">
32
- </div>
33
- <h1 class=" text-white text-4xl font-medium drop-shadow-sm">{SITE.title}</h1>
34
- <p class="text-lg mt-4 text-slate-300">{SITE.description}</p>
35
- </header>
36
- <nav>
37
- <ul class="flex gap-4 max-w-5xl mx-auto text-left mt-12">
38
- {
39
- navItems.map(({ title, description, url, img }) => (
40
- <a href={url} class="flex flex-col bg-white rounded-md hover:-translate-y-1 hover:shadow-lg transition-all flex-1 items-center p-4">
41
- <img src={img} alt={title}>
42
- <h2 class="text-lg font-medium">{title}</h2>
43
- <p class="text-slate-500">{description}</p>
44
- </a>
45
- ))
46
- }
47
- </ul>
48
- </nav>
49
- </div>
50
-
51
- <script is:inline>
52
- </script>
1
+ ---
2
+ import { changeLanguage } from "i18next";
3
+ import { Icon } from "astro-icon/components";
4
+ import { SITE } from "../config";
5
+ import Jumbatron from "../components/Jumbatron.vue";
6
+ import Layout from "../layouts/Layout.astro";
7
+ import Headline from "../components/Headline.vue";
8
+ import Button from "../components/Button.vue";
9
+
10
+ const navItems = [
11
+ {
12
+ title: "Core",
13
+ description: "Base colors, typography, shadows, and more.",
14
+ url: "/core/introduction",
15
+ icon: "ant-design:cluster-outlined"
16
+ },
17
+ {
18
+ title: "Components",
19
+ description: "The building blocks for our UI.",
20
+ url: "/components/buttons",
21
+ icon: "ant-design:build-twotone"
22
+ },
23
+ {
24
+ title: "Patterns",
25
+ description: "Common patterns for building interfaces.",
26
+ url: "/patterns/introduction",
27
+ icon: "ant-design:audit-outlined"
28
+ },
29
+ ];
30
+ ---
31
+ <Layout>
32
+ <div class="bg-slate-100 min-h-screen text-center" >
33
+ <Jumbatron class="w-full">
34
+ <span slot="intro" set:html={SITE.title} />
35
+
36
+ <p slot="subtitle"
37
+ class="mt-3 text-base text-gray-200 sm:mt-5 text-lg md:text-xl lg:mx-0 md:mt-5"
38
+ set:html={SITE.description}
39
+ />
40
+
41
+
42
+ <Button slot="cta"
43
+ href="/core/introduction/"
44
+ title="Spoko Design System"
45
+ primary
46
+ >
47
+ Read More
48
+ </Button>
49
+ </Jumbatron>
50
+ <nav>
51
+ <ul class="flex gap-4 max-w-5xl mx-auto text-left mt-12">
52
+ {
53
+ navItems.map(({ title, description, url, icon }) => (
54
+ <a
55
+ href={url}
56
+ class="flex flex-col bg-white rounded-md hover:-translate-y-1 hover:shadow-lg transition-all flex-1 items-center py-10 px-4 text-center"
57
+ >
58
+ <Headline as="h2" textSize="2xl">
59
+ <Icon name={icon} aria-hidden="true" class="text-blue-wrc mr-2" />
60
+ {title}
61
+ </Headline>
62
+ <p class="text-slate-500">{description}</p>
63
+ </a>
64
+ ))
65
+ }
66
+ </ul>
67
+ </nav>
68
+ </div>
69
+ </Layout>
70
+ <script is:inline></script>
@@ -1,61 +1,60 @@
1
- ---
2
- layout: ../../layouts/MainLayout.astro
3
- ---
4
-
5
- import Container from '../../components/layout/Container.astro'
6
- import Header from '../../components/layout/Header.astro'
7
-
8
-
9
- # Patterns
10
-
11
- Common patterns for building interfaces.
12
-
13
-
14
-
15
-
16
- ## Container (max-w-screen-xl)
17
-
18
- <div class="component-preview" style="display: block">
19
- <Container class="bg-white">content</Container>
20
- </div>
21
-
22
- ### Code
23
-
24
- ```ts
25
- <Container class="bg-white">content</Container>
26
- ```
27
-
28
-
29
- ## Container FullWidth (max-w-full)
30
-
31
- <div class="component-preview" style="display: block">
32
- <Container class="bg-white" isFullWidth>content</Container>
33
- </div>
34
-
35
- ### Code
36
-
37
- ```ts
38
- <Container class="bg-white" isFullWidth>content</Container>
39
- ```
40
-
41
- ## Header
42
-
43
- <div class="component-preview" style="display: block">
44
- <Header class="static">
45
- <div slot="logo" class="flex-shrink-0 flex items-center h-8">
46
- <div class="bg-gray">LOGO</div>
47
- </div>
48
- <input type="text" slot="search" class="h-full w-full sm:w-64 border border-solid px-3 text-sm" placeholder="Search..."/>
49
- </Header>
50
- </div>
51
-
52
- ### Code
53
-
54
- ```ts
55
- <Header>
56
- <div slot="logo" class="flex-shrink-0 flex items-center h-8">
57
- <div class="bg-gray">LOGO</div>
58
- </div>
59
- <input type="text" slot="search" class="h-full border border-solid px-3 text-sm" placeholder="Search..."/>
60
- </Header>
61
- ```
1
+ ---
2
+ layout: ../../layouts/MainLayout.astro
3
+ ---
4
+
5
+ import Container from '../../components/layout/Container.astro'
6
+ import Header from '../../components/layout/Header.astro'
7
+
8
+
9
+ # Patterns
10
+
11
+ Common patterns for building interfaces.
12
+
13
+
14
+
15
+ ## Container (max-w-screen-xl)
16
+
17
+ <div class="component-preview" style="display: block">
18
+ <Container class="bg-white">content</Container>
19
+ </div>
20
+
21
+ ### Code
22
+
23
+ ```ts
24
+ <Container class="bg-white">content</Container>
25
+ ```
26
+
27
+
28
+ ## Container FullWidth (max-w-full)
29
+
30
+ <div class="component-preview" style="display: block">
31
+ <Container class="bg-white" isFullWidth>content</Container>
32
+ </div>
33
+
34
+ ### Code
35
+
36
+ ```ts
37
+ <Container class="bg-white" isFullWidth>content</Container>
38
+ ```
39
+
40
+ ## Header
41
+
42
+ <div class="component-preview" style="display: block">
43
+ <Header class="static">
44
+ <div slot="logo" class="flex-shrink-0 flex items-center h-8">
45
+ <div class="bg-gray">LOGO</div>
46
+ </div>
47
+ <input type="text" slot="search" class="h-full w-full sm:w-52 md:w-64 border border-solid px-3 text-sm" placeholder="Search..."/>
48
+ </Header>
49
+ </div>
50
+
51
+ ### Code
52
+
53
+ ```ts
54
+ <Header>
55
+ <div slot="logo" class="flex-shrink-0 flex items-center h-8">
56
+ <div class="bg-gray">LOGO</div>
57
+ </div>
58
+ <input type="text" slot="search" class="h-full w-full sm:w-52 md:w-64 border border-solid px-3 text-sm" placeholder="Search..."/>
59
+ </Header>
60
+ ```
@@ -1,75 +1,75 @@
1
- $navbar-height-md: 56px;
2
- $navbar-height: 52px;
3
- $special-menu-height: 145px;
4
- $footer-navbar-height: 45px;
5
- $footer-content-height: 166px;
6
-
7
- $content-padding-bottom: 17px;
8
-
9
-
10
- // Color system
11
-
12
- $white: #fff !default;
13
- $gray-100: #f8f9fa !default;
14
- $gray-200: #e9ecef !default;
15
- $gray-300: #dee2e6 !default;
16
- $gray-400: #ced4da !default;
17
- $gray-500: #adb5bd !default;
18
- $gray-600: #6c757d !default;
19
- $gray-700: #495057 !default;
20
- $gray-800: #343a40 !default;
21
- $gray-900: #212529 !default;
22
- $black: #000 !default;
23
-
24
- $filter-label: #a8a8a8;
25
-
26
- $bg-stylish: #F6F6F6;
27
- $bg-highlighted: #E7E7E7;
28
- $badge-dark: #202020;
29
-
30
- // social media colors:
31
- $facebook: #4267B2;
32
- $youtube: #ff0000;
33
- $ebay: #3665f3;
34
-
35
-
36
- $grays: () !default;
37
- // stylelint-disable-next-line scss/dollar-variable-default
38
- $grays: map-merge(("100": $gray-100,
39
- "200": $gray-200,
40
- "300": $gray-300,
41
- "400": $gray-400,
42
- "500": $gray-500,
43
- "600": $gray-600,
44
- "700": $gray-700,
45
- "800": $gray-800,
46
- "900": $gray-900),
47
- $grays);
48
-
49
- $lightblue: #ccecff;
50
- $vwblue: #0786ba;
51
- $vwblue2: #00b1eb;
52
- $blue: #0099da; //#0070B2; //#007bff !default;
53
- $darkblue: #00437A;
54
- $verydarkblue: #232737;
55
- $indigo: #6610f2 !default;
56
- $purple: #6f42c1 !default;
57
- $pink: #e83e8c !default;
58
- $red: #dc3545;//#e94e1b; //#dc3545 !default;
59
- $orange: #ff5a00; //allegro//#f4831d; //#ff9700; // #fd7e14 !default;
60
- $orange-darken: #e94d1a;
61
- $yellow: #ffc107 !default;
62
- $green: #28a745 !default;
63
- $teal: #20c997 !default;
64
- $cyan: #17a2b8 !default;
65
- $grey: #797878 !default;
66
-
67
-
68
- $primary: $blue; // $blue !default;
69
- $secondary: $grey; //$gray-600; //$gray-600 !default;
70
- $success: $green !default;
71
- $info: $ebay;//$cyan !default;
72
- $warning: $orange !default;
73
- $danger: $red !default;
74
- $light: $gray-100 !default;
75
- $dark: $gray-900 !default;
1
+ $navbar-height-md: 56px;
2
+ $navbar-height: 52px;
3
+ $special-menu-height: 145px;
4
+ $footer-navbar-height: 45px;
5
+ $footer-content-height: 166px;
6
+
7
+ $content-padding-bottom: 17px;
8
+
9
+
10
+ // Color system
11
+
12
+ $white: #fff !default;
13
+ $gray-100: #f8f9fa !default;
14
+ $gray-200: #e9ecef !default;
15
+ $gray-300: #dee2e6 !default;
16
+ $gray-400: #ced4da !default;
17
+ $gray-500: #adb5bd !default;
18
+ $gray-600: #6c757d !default;
19
+ $gray-700: #495057 !default;
20
+ $gray-800: #343a40 !default;
21
+ $gray-900: #212529 !default;
22
+ $black: #000 !default;
23
+
24
+ $filter-label: #a8a8a8;
25
+
26
+ $bg-stylish: #F6F6F6;
27
+ $bg-highlighted: #E7E7E7;
28
+ $badge-dark: #202020;
29
+
30
+ // social media colors:
31
+ $facebook: #4267B2;
32
+ $youtube: #ff0000;
33
+ $ebay: #3665f3;
34
+
35
+
36
+ $grays: () !default;
37
+ // stylelint-disable-next-line scss/dollar-variable-default
38
+ $grays: map-merge(("100": $gray-100,
39
+ "200": $gray-200,
40
+ "300": $gray-300,
41
+ "400": $gray-400,
42
+ "500": $gray-500,
43
+ "600": $gray-600,
44
+ "700": $gray-700,
45
+ "800": $gray-800,
46
+ "900": $gray-900),
47
+ $grays);
48
+
49
+ $lightblue: #ccecff;
50
+ $vwblue: #0786ba;
51
+ $vwblue2: #00b1eb;
52
+ $blue: #0099da; //#0070B2; //#007bff !default;
53
+ $darkblue: #00437A;
54
+ $verydarkblue: #232737;
55
+ $indigo: #6610f2 !default;
56
+ $purple: #6f42c1 !default;
57
+ $pink: #e83e8c !default;
58
+ $red: #dc3545;//#e94e1b; //#dc3545 !default;
59
+ $orange: #ff5a00; //allegro//#f4831d; //#ff9700; // #fd7e14 !default;
60
+ $orange-darken: #e94d1a;
61
+ $yellow: #ffc107 !default;
62
+ $green: #28a745 !default;
63
+ $teal: #20c997 !default;
64
+ $cyan: #17a2b8 !default;
65
+ $grey: #797878 !default;
66
+
67
+
68
+ $primary: $blue; // $blue !default;
69
+ $secondary: $grey; //$gray-600; //$gray-600 !default;
70
+ $success: $green !default;
71
+ $info: $ebay;//$cyan !default;
72
+ $warning: $orange !default;
73
+ $danger: $red !default;
74
+ $light: $gray-100 !default;
75
+ $dark: $gray-900 !default;