@pleodigital/design-system-votey 1.0.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/README.md +2 -0
- package/dist/js/tailwind-preset.js +18 -0
- package/dist/scss/_variables.scss +10 -0
- package/package.json +37 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
export default {
|
|
3
|
+
theme: {
|
|
4
|
+
extend: {
|
|
5
|
+
colors: {
|
|
6
|
+
"brand-primary": "#0070f3",
|
|
7
|
+
"brand-secondary": "#1a1a1a",
|
|
8
|
+
"brand-highlight": "#ffc107",
|
|
9
|
+
"brand-pink-miami-color": "#ff6ec7",
|
|
10
|
+
"brand-xxx-color": "#abcdef",
|
|
11
|
+
"brand-highlight-100": "#ffc107"
|
|
12
|
+
},
|
|
13
|
+
spacing: {},
|
|
14
|
+
borderRadius: {}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
plugins: []
|
|
18
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
// Do not edit directly
|
|
3
|
+
// Generated on Mon, 03 Nov 2025 12:56:17 GMT
|
|
4
|
+
|
|
5
|
+
$color-brand-primary: #0070f3;
|
|
6
|
+
$color-brand-secondary: #1a1a1a;
|
|
7
|
+
$color-brand-highlight: #ffc107;
|
|
8
|
+
$color-brand-pink-miami-color: #ff6ec7;
|
|
9
|
+
$color-brand-xxx-color: #abcdef;
|
|
10
|
+
$color-brand-highlight-100: #ffc107;
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pleodigital/design-system-votey",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Centralny system tokenów projektowych generowany przez Style Dictionary.",
|
|
5
|
+
"main": "dist/js/tailwind-preset.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build:tokens": "style-dictionary build --config style-dictionary.config.js",
|
|
11
|
+
"storybook": "storybook dev -p 6006",
|
|
12
|
+
"build-storybook": "storybook build"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"design-tokens",
|
|
16
|
+
"style-dictionary",
|
|
17
|
+
"design-system",
|
|
18
|
+
"tailwind",
|
|
19
|
+
"scss"
|
|
20
|
+
],
|
|
21
|
+
"author": "",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@chromatic-com/storybook": "^1.2.0",
|
|
25
|
+
"@storybook/addon-essentials": "^8.0.0",
|
|
26
|
+
"@storybook/addon-interactions": "^8.0.0",
|
|
27
|
+
"@storybook/addon-links": "^8.0.0",
|
|
28
|
+
"@storybook/blocks": "^8.0.0",
|
|
29
|
+
"@storybook/react": "^8.0.0",
|
|
30
|
+
"@storybook/react-vite": "^8.0.0",
|
|
31
|
+
"@storybook/test": "^8.0.0",
|
|
32
|
+
"react": "^18.2.0",
|
|
33
|
+
"react-dom": "^18.2.0",
|
|
34
|
+
"storybook": "^8.0.0",
|
|
35
|
+
"style-dictionary": "^3.9.2"
|
|
36
|
+
}
|
|
37
|
+
}
|