@expo/styleguide-native 0.4.1 → 1.0.0
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/dist/index.d.ts +3 -1
- package/dist/index.js +5 -1
- package/dist/src/icons/AtSignIcon.d.ts +4 -0
- package/dist/src/icons/{AtIcon.js → AtSignIcon.js} +3 -3
- package/dist/src/icons/BuildIcon.js +1 -1
- package/dist/src/icons/DebugIcon.d.ts +4 -0
- package/dist/src/icons/DebugIcon.js +30 -0
- package/dist/src/icons/DeploymentIcon.d.ts +4 -0
- package/dist/src/icons/DeploymentIcon.js +29 -0
- package/dist/src/icons/InspectElementIcon.d.ts +4 -0
- package/dist/src/icons/InspectElementIcon.js +30 -0
- package/dist/src/icons/InvoicesIcon.js +3 -7
- package/dist/src/icons/LifebuoyIcon.d.ts +4 -0
- package/dist/src/icons/LifebuoyIcon.js +29 -0
- package/dist/src/icons/LockIcon.js +1 -2
- package/dist/src/icons/OverviewIcon.d.ts +4 -0
- package/dist/src/icons/OverviewIcon.js +29 -0
- package/dist/src/icons/PerformanceIcon.d.ts +4 -0
- package/dist/src/icons/PerformanceIcon.js +30 -0
- package/dist/src/icons/{AtIcon.d.ts → PinIcon.d.ts} +1 -1
- package/dist/src/icons/PinIcon.js +29 -0
- package/dist/src/icons/PlanEnterpriseIcon.d.ts +4 -0
- package/dist/src/icons/PlanEnterpriseIcon.js +29 -0
- package/dist/src/icons/PlanFreeIcon.d.ts +4 -0
- package/dist/src/icons/PlanFreeIcon.js +29 -0
- package/dist/src/icons/PlanProductionIcon.d.ts +4 -0
- package/dist/src/icons/PlanProductionIcon.js +30 -0
- package/dist/src/icons/ProjectTransferIcon.js +2 -2
- package/dist/src/icons/RunIcon.d.ts +4 -0
- package/dist/src/icons/RunIcon.js +30 -0
- package/dist/src/icons/UndoIcon.d.ts +4 -0
- package/dist/src/icons/UndoIcon.js +29 -0
- package/dist/src/icons/UpdateIcon.d.ts +4 -0
- package/dist/src/icons/UpdateIcon.js +30 -0
- package/dist/src/icons/UploadIcon.d.ts +4 -0
- package/dist/src/icons/UploadIcon.js +30 -0
- package/dist/src/icons/index.d.ts +15 -1
- package/dist/src/icons/index.js +32 -4
- package/dist/src/styles/breakpoints.d.ts +5 -0
- package/dist/src/styles/breakpoints.js +8 -0
- package/dist/src/styles/palette.js +84 -84
- package/dist/src/styles/sizing.js +3 -3
- package/dist/src/styles/themes.d.ts +20 -2
- package/dist/src/styles/themes.js +20 -2
- package/dist/src/styles/typography.d.ts +424 -0
- package/dist/src/styles/typography.js +338 -0
- package/package.json +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
21
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
const React = __importStar(require("react"));
|
|
23
|
+
const react_native_svg_1 = __importStar(require("react-native-svg"));
|
|
24
|
+
function UploadIcon(props) {
|
|
25
|
+
const { size, color, width, height } = props;
|
|
26
|
+
return (React.createElement(react_native_svg_1.default, Object.assign({ width: size || width || 20, height: size || height || 20, viewBox: "0 0 20 21", fill: "none" }, props),
|
|
27
|
+
React.createElement(react_native_svg_1.Path, { d: "M5.283 10.083h9.084L9.825 2.817l-4.542 7.266z", fill: color || "#000" }),
|
|
28
|
+
React.createElement(react_native_svg_1.Path, { fillRule: "evenodd", clipRule: "evenodd", d: "M18.908 1a.908.908 0 01-.908.908H1.65a.908.908 0 110-1.816H18c.502 0 .908.406.908.908zM9.825 9.175c.502 0 .908.407.908.908v9.084a.908.908 0 11-1.816 0v-9.084c0-.501.406-.908.908-.908z", fill: color || "#000" })));
|
|
29
|
+
}
|
|
30
|
+
exports.default = UploadIcon;
|
|
@@ -6,7 +6,7 @@ export { default as AppleIcon } from './AppleIcon';
|
|
|
6
6
|
export { default as AppleSimulatorIcon } from './AppleSimulatorIcon';
|
|
7
7
|
export { default as ArrowLeftIcon } from './ArrowLeftIcon';
|
|
8
8
|
export { default as ArrowRightIcon } from './ArrowRightIcon';
|
|
9
|
-
export { default as
|
|
9
|
+
export { default as AtSignIcon } from './AtSignIcon';
|
|
10
10
|
export { default as BadgeIcon } from './BadgeIcon';
|
|
11
11
|
export { default as BellIcon } from './BellIcon';
|
|
12
12
|
export { default as BranchIcon } from './BranchIcon';
|
|
@@ -19,6 +19,8 @@ export { default as ChevronDownIcon } from './ChevronDownIcon';
|
|
|
19
19
|
export { default as CloudSlashIcon } from './CloudSlashIcon';
|
|
20
20
|
export { default as CommitIcon } from './CommitIcon';
|
|
21
21
|
export { default as CredentialIcon } from './CredentialIcon';
|
|
22
|
+
export { default as DebugIcon } from './DebugIcon';
|
|
23
|
+
export { default as DeploymentIcon } from './DeploymentIcon';
|
|
22
24
|
export { default as DeploymentsIcon } from './DeploymentsIcon';
|
|
23
25
|
export { default as DiscordIcon } from './DiscordIcon';
|
|
24
26
|
export { default as DiscourseIcon } from './DiscourseIcon';
|
|
@@ -31,8 +33,10 @@ export { default as GoogleAppStoreIcon } from './GoogleAppStoreIcon';
|
|
|
31
33
|
export { default as HomeFilledIcon } from './HomeFilledIcon';
|
|
32
34
|
export { default as HomeIcon } from './HomeIcon';
|
|
33
35
|
export { default as InfoIcon } from './InfoIcon';
|
|
36
|
+
export { default as InspectElementIcon } from './InspectElementIcon';
|
|
34
37
|
export { default as InstagramIcon } from './InstagramIcon';
|
|
35
38
|
export { default as InvoicesIcon } from './InvoicesIcon';
|
|
39
|
+
export { default as LifebuoyIcon } from './LifebuoyIcon';
|
|
36
40
|
export { default as LockIcon } from './LockIcon';
|
|
37
41
|
export { default as LogoutMobileIcon } from './LogoutMobileIcon';
|
|
38
42
|
export { default as LogsIcon } from './LogsIcon';
|
|
@@ -41,6 +45,12 @@ export { default as MegaphoneIcon } from './MegaphoneIcon';
|
|
|
41
45
|
export { default as MessageIcon } from './MessageIcon';
|
|
42
46
|
export { default as OneTimePasswordIcon } from './OneTimePasswordIcon';
|
|
43
47
|
export { default as OpenInternalIcon } from './OpenInternalIcon';
|
|
48
|
+
export { default as OverviewIcon } from './OverviewIcon';
|
|
49
|
+
export { default as PerformanceIcon } from './PerformanceIcon';
|
|
50
|
+
export { default as PinIcon } from './PinIcon';
|
|
51
|
+
export { default as PlanEnterpriseIcon } from './PlanEnterpriseIcon';
|
|
52
|
+
export { default as PlanFreeIcon } from './PlanFreeIcon';
|
|
53
|
+
export { default as PlanProductionIcon } from './PlanProductionIcon';
|
|
44
54
|
export { default as PlansIcon } from './PlansIcon';
|
|
45
55
|
export { default as ProjectTransferIcon } from './ProjectTransferIcon';
|
|
46
56
|
export { default as PushToDeviceIcon } from './PushToDeviceIcon';
|
|
@@ -49,6 +59,7 @@ export { default as QuestionIcon } from './QuestionIcon';
|
|
|
49
59
|
export { default as QuestionMarkIcon } from './QuestionMarkIcon';
|
|
50
60
|
export { default as RefreshIcon } from './RefreshIcon';
|
|
51
61
|
export { default as RolloutIcon } from './RolloutIcon';
|
|
62
|
+
export { default as RunIcon } from './RunIcon';
|
|
52
63
|
export { default as RuntimeVersionIcon } from './RuntimeVersionIcon';
|
|
53
64
|
export { default as ScanIcon } from './ScanIcon';
|
|
54
65
|
export { default as SearchIcon } from './SearchIcon';
|
|
@@ -66,6 +77,9 @@ export { default as TriangleDownIcon } from './TriangleDownIcon';
|
|
|
66
77
|
export { default as TriangleRightIcon } from './TriangleRightIcon';
|
|
67
78
|
export { default as TwitchIcon } from './TwitchIcon';
|
|
68
79
|
export { default as TwitterIcon } from './TwitterIcon';
|
|
80
|
+
export { default as UndoIcon } from './UndoIcon';
|
|
81
|
+
export { default as UpdateIcon } from './UpdateIcon';
|
|
82
|
+
export { default as UploadIcon } from './UploadIcon';
|
|
69
83
|
export { default as UserFilledIcon } from './UserFilledIcon';
|
|
70
84
|
export { default as UserIcon } from './UserIcon';
|
|
71
85
|
export { default as UsersFilledIcon } from './UsersFilledIcon';
|
package/dist/src/icons/index.js
CHANGED
|
@@ -3,8 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
7
|
-
exports.YoutubeIcon = exports.XIcon = exports.WarningIcon = exports.VersionIcon = exports.UsersIcon = exports.UsersFilledIcon = exports.UserIcon = exports.UserFilledIcon = exports.TwitterIcon = exports.TwitchIcon = exports.TriangleRightIcon = exports.TriangleDownIcon = exports.TrashIcon = exports.TokensIcon = exports.ThemeLightIcon = exports.ThemeDarkIcon = exports.ThemeAutoIcon = exports.StoreIcon = exports.SparklesIcon = exports.SettingsIcon = exports.SettingsFilledIcon = exports.SecretsIcon = exports.SearchIcon = exports.ScanIcon = exports.RuntimeVersionIcon = exports.RolloutIcon = void 0;
|
|
6
|
+
exports.PinIcon = exports.PerformanceIcon = exports.OverviewIcon = exports.OpenInternalIcon = exports.OneTimePasswordIcon = exports.MessageIcon = exports.MegaphoneIcon = exports.MailIcon = exports.LogsIcon = exports.LogoutMobileIcon = exports.LockIcon = exports.LifebuoyIcon = exports.InvoicesIcon = exports.InstagramIcon = exports.InspectElementIcon = exports.InfoIcon = exports.HomeIcon = exports.HomeFilledIcon = exports.GoogleAppStoreIcon = exports.GithubIcon = exports.GeneralIcon = exports.FacebookIcon = exports.ErrorIcon = exports.DownloadIcon = exports.DiscourseIcon = exports.DiscordIcon = exports.DeploymentsIcon = exports.DeploymentIcon = exports.DebugIcon = exports.CredentialIcon = exports.CommitIcon = exports.CloudSlashIcon = exports.ChevronDownIcon = exports.CheckIcon = exports.ChannelIcon = exports.BuildProfileIcon = exports.BuildNumberIcon = exports.BuildIcon = exports.BranchIcon = exports.BellIcon = exports.BadgeIcon = exports.AtSignIcon = exports.ArrowRightIcon = exports.ArrowLeftIcon = exports.AppleSimulatorIcon = exports.AppleIcon = exports.AppleAppStoreIcon = exports.AndroidIcon = exports.AddPhotoIcon = exports.ActivityIcon = void 0;
|
|
7
|
+
exports.YoutubeIcon = exports.XIcon = exports.WarningIcon = exports.VersionIcon = exports.UsersIcon = exports.UsersFilledIcon = exports.UserIcon = exports.UserFilledIcon = exports.UploadIcon = exports.UpdateIcon = exports.UndoIcon = exports.TwitterIcon = exports.TwitchIcon = exports.TriangleRightIcon = exports.TriangleDownIcon = exports.TrashIcon = exports.TokensIcon = exports.ThemeLightIcon = exports.ThemeDarkIcon = exports.ThemeAutoIcon = exports.StoreIcon = exports.SparklesIcon = exports.SettingsIcon = exports.SettingsFilledIcon = exports.SecretsIcon = exports.SearchIcon = exports.ScanIcon = exports.RuntimeVersionIcon = exports.RunIcon = exports.RolloutIcon = exports.RefreshIcon = exports.QuestionMarkIcon = exports.QuestionIcon = exports.QrCodeIcon = exports.PushToDeviceIcon = exports.ProjectTransferIcon = exports.PlansIcon = exports.PlanProductionIcon = exports.PlanFreeIcon = exports.PlanEnterpriseIcon = void 0;
|
|
8
8
|
var ActivityIcon_1 = require("./ActivityIcon");
|
|
9
9
|
Object.defineProperty(exports, "ActivityIcon", { enumerable: true, get: function () { return __importDefault(ActivityIcon_1).default; } });
|
|
10
10
|
var AddPhotoIcon_1 = require("./AddPhotoIcon");
|
|
@@ -21,8 +21,8 @@ var ArrowLeftIcon_1 = require("./ArrowLeftIcon");
|
|
|
21
21
|
Object.defineProperty(exports, "ArrowLeftIcon", { enumerable: true, get: function () { return __importDefault(ArrowLeftIcon_1).default; } });
|
|
22
22
|
var ArrowRightIcon_1 = require("./ArrowRightIcon");
|
|
23
23
|
Object.defineProperty(exports, "ArrowRightIcon", { enumerable: true, get: function () { return __importDefault(ArrowRightIcon_1).default; } });
|
|
24
|
-
var
|
|
25
|
-
Object.defineProperty(exports, "
|
|
24
|
+
var AtSignIcon_1 = require("./AtSignIcon");
|
|
25
|
+
Object.defineProperty(exports, "AtSignIcon", { enumerable: true, get: function () { return __importDefault(AtSignIcon_1).default; } });
|
|
26
26
|
var BadgeIcon_1 = require("./BadgeIcon");
|
|
27
27
|
Object.defineProperty(exports, "BadgeIcon", { enumerable: true, get: function () { return __importDefault(BadgeIcon_1).default; } });
|
|
28
28
|
var BellIcon_1 = require("./BellIcon");
|
|
@@ -47,6 +47,10 @@ var CommitIcon_1 = require("./CommitIcon");
|
|
|
47
47
|
Object.defineProperty(exports, "CommitIcon", { enumerable: true, get: function () { return __importDefault(CommitIcon_1).default; } });
|
|
48
48
|
var CredentialIcon_1 = require("./CredentialIcon");
|
|
49
49
|
Object.defineProperty(exports, "CredentialIcon", { enumerable: true, get: function () { return __importDefault(CredentialIcon_1).default; } });
|
|
50
|
+
var DebugIcon_1 = require("./DebugIcon");
|
|
51
|
+
Object.defineProperty(exports, "DebugIcon", { enumerable: true, get: function () { return __importDefault(DebugIcon_1).default; } });
|
|
52
|
+
var DeploymentIcon_1 = require("./DeploymentIcon");
|
|
53
|
+
Object.defineProperty(exports, "DeploymentIcon", { enumerable: true, get: function () { return __importDefault(DeploymentIcon_1).default; } });
|
|
50
54
|
var DeploymentsIcon_1 = require("./DeploymentsIcon");
|
|
51
55
|
Object.defineProperty(exports, "DeploymentsIcon", { enumerable: true, get: function () { return __importDefault(DeploymentsIcon_1).default; } });
|
|
52
56
|
var DiscordIcon_1 = require("./DiscordIcon");
|
|
@@ -71,10 +75,14 @@ var HomeIcon_1 = require("./HomeIcon");
|
|
|
71
75
|
Object.defineProperty(exports, "HomeIcon", { enumerable: true, get: function () { return __importDefault(HomeIcon_1).default; } });
|
|
72
76
|
var InfoIcon_1 = require("./InfoIcon");
|
|
73
77
|
Object.defineProperty(exports, "InfoIcon", { enumerable: true, get: function () { return __importDefault(InfoIcon_1).default; } });
|
|
78
|
+
var InspectElementIcon_1 = require("./InspectElementIcon");
|
|
79
|
+
Object.defineProperty(exports, "InspectElementIcon", { enumerable: true, get: function () { return __importDefault(InspectElementIcon_1).default; } });
|
|
74
80
|
var InstagramIcon_1 = require("./InstagramIcon");
|
|
75
81
|
Object.defineProperty(exports, "InstagramIcon", { enumerable: true, get: function () { return __importDefault(InstagramIcon_1).default; } });
|
|
76
82
|
var InvoicesIcon_1 = require("./InvoicesIcon");
|
|
77
83
|
Object.defineProperty(exports, "InvoicesIcon", { enumerable: true, get: function () { return __importDefault(InvoicesIcon_1).default; } });
|
|
84
|
+
var LifebuoyIcon_1 = require("./LifebuoyIcon");
|
|
85
|
+
Object.defineProperty(exports, "LifebuoyIcon", { enumerable: true, get: function () { return __importDefault(LifebuoyIcon_1).default; } });
|
|
78
86
|
var LockIcon_1 = require("./LockIcon");
|
|
79
87
|
Object.defineProperty(exports, "LockIcon", { enumerable: true, get: function () { return __importDefault(LockIcon_1).default; } });
|
|
80
88
|
var LogoutMobileIcon_1 = require("./LogoutMobileIcon");
|
|
@@ -91,6 +99,18 @@ var OneTimePasswordIcon_1 = require("./OneTimePasswordIcon");
|
|
|
91
99
|
Object.defineProperty(exports, "OneTimePasswordIcon", { enumerable: true, get: function () { return __importDefault(OneTimePasswordIcon_1).default; } });
|
|
92
100
|
var OpenInternalIcon_1 = require("./OpenInternalIcon");
|
|
93
101
|
Object.defineProperty(exports, "OpenInternalIcon", { enumerable: true, get: function () { return __importDefault(OpenInternalIcon_1).default; } });
|
|
102
|
+
var OverviewIcon_1 = require("./OverviewIcon");
|
|
103
|
+
Object.defineProperty(exports, "OverviewIcon", { enumerable: true, get: function () { return __importDefault(OverviewIcon_1).default; } });
|
|
104
|
+
var PerformanceIcon_1 = require("./PerformanceIcon");
|
|
105
|
+
Object.defineProperty(exports, "PerformanceIcon", { enumerable: true, get: function () { return __importDefault(PerformanceIcon_1).default; } });
|
|
106
|
+
var PinIcon_1 = require("./PinIcon");
|
|
107
|
+
Object.defineProperty(exports, "PinIcon", { enumerable: true, get: function () { return __importDefault(PinIcon_1).default; } });
|
|
108
|
+
var PlanEnterpriseIcon_1 = require("./PlanEnterpriseIcon");
|
|
109
|
+
Object.defineProperty(exports, "PlanEnterpriseIcon", { enumerable: true, get: function () { return __importDefault(PlanEnterpriseIcon_1).default; } });
|
|
110
|
+
var PlanFreeIcon_1 = require("./PlanFreeIcon");
|
|
111
|
+
Object.defineProperty(exports, "PlanFreeIcon", { enumerable: true, get: function () { return __importDefault(PlanFreeIcon_1).default; } });
|
|
112
|
+
var PlanProductionIcon_1 = require("./PlanProductionIcon");
|
|
113
|
+
Object.defineProperty(exports, "PlanProductionIcon", { enumerable: true, get: function () { return __importDefault(PlanProductionIcon_1).default; } });
|
|
94
114
|
var PlansIcon_1 = require("./PlansIcon");
|
|
95
115
|
Object.defineProperty(exports, "PlansIcon", { enumerable: true, get: function () { return __importDefault(PlansIcon_1).default; } });
|
|
96
116
|
var ProjectTransferIcon_1 = require("./ProjectTransferIcon");
|
|
@@ -107,6 +127,8 @@ var RefreshIcon_1 = require("./RefreshIcon");
|
|
|
107
127
|
Object.defineProperty(exports, "RefreshIcon", { enumerable: true, get: function () { return __importDefault(RefreshIcon_1).default; } });
|
|
108
128
|
var RolloutIcon_1 = require("./RolloutIcon");
|
|
109
129
|
Object.defineProperty(exports, "RolloutIcon", { enumerable: true, get: function () { return __importDefault(RolloutIcon_1).default; } });
|
|
130
|
+
var RunIcon_1 = require("./RunIcon");
|
|
131
|
+
Object.defineProperty(exports, "RunIcon", { enumerable: true, get: function () { return __importDefault(RunIcon_1).default; } });
|
|
110
132
|
var RuntimeVersionIcon_1 = require("./RuntimeVersionIcon");
|
|
111
133
|
Object.defineProperty(exports, "RuntimeVersionIcon", { enumerable: true, get: function () { return __importDefault(RuntimeVersionIcon_1).default; } });
|
|
112
134
|
var ScanIcon_1 = require("./ScanIcon");
|
|
@@ -141,6 +163,12 @@ var TwitchIcon_1 = require("./TwitchIcon");
|
|
|
141
163
|
Object.defineProperty(exports, "TwitchIcon", { enumerable: true, get: function () { return __importDefault(TwitchIcon_1).default; } });
|
|
142
164
|
var TwitterIcon_1 = require("./TwitterIcon");
|
|
143
165
|
Object.defineProperty(exports, "TwitterIcon", { enumerable: true, get: function () { return __importDefault(TwitterIcon_1).default; } });
|
|
166
|
+
var UndoIcon_1 = require("./UndoIcon");
|
|
167
|
+
Object.defineProperty(exports, "UndoIcon", { enumerable: true, get: function () { return __importDefault(UndoIcon_1).default; } });
|
|
168
|
+
var UpdateIcon_1 = require("./UpdateIcon");
|
|
169
|
+
Object.defineProperty(exports, "UpdateIcon", { enumerable: true, get: function () { return __importDefault(UpdateIcon_1).default; } });
|
|
170
|
+
var UploadIcon_1 = require("./UploadIcon");
|
|
171
|
+
Object.defineProperty(exports, "UploadIcon", { enumerable: true, get: function () { return __importDefault(UploadIcon_1).default; } });
|
|
144
172
|
var UserFilledIcon_1 = require("./UserFilledIcon");
|
|
145
173
|
Object.defineProperty(exports, "UserFilledIcon", { enumerable: true, get: function () { return __importDefault(UserFilledIcon_1).default; } });
|
|
146
174
|
var UserIcon_1 = require("./UserIcon");
|
|
@@ -45,12 +45,12 @@ exports.palette = {
|
|
|
45
45
|
100: '#ffebda',
|
|
46
46
|
200: '#ffd1ac',
|
|
47
47
|
300: '#ffab70',
|
|
48
|
-
400: '#
|
|
49
|
-
500: '#
|
|
50
|
-
600: '#
|
|
51
|
-
700: '#
|
|
52
|
-
800: '#
|
|
53
|
-
900: '#
|
|
48
|
+
400: '#fb8e41',
|
|
49
|
+
500: '#fa7c25',
|
|
50
|
+
600: '#de6614',
|
|
51
|
+
700: '#c45408',
|
|
52
|
+
800: '#96430b',
|
|
53
|
+
900: '#7a4018',
|
|
54
54
|
},
|
|
55
55
|
pink: {
|
|
56
56
|
'000': '#ffeef8',
|
|
@@ -80,13 +80,13 @@ exports.palette = {
|
|
|
80
80
|
'000': '#f9f7ff',
|
|
81
81
|
100: '#ede9ff',
|
|
82
82
|
200: '#d2cafd',
|
|
83
|
-
300: '#
|
|
84
|
-
400: '#
|
|
83
|
+
300: '#a193f9',
|
|
84
|
+
400: '#664fff',
|
|
85
85
|
500: '#4630eb',
|
|
86
|
-
600: '#
|
|
87
|
-
700: '#
|
|
88
|
-
800: '#
|
|
89
|
-
900: '#
|
|
86
|
+
600: '#3929c4',
|
|
87
|
+
700: '#2e2496',
|
|
88
|
+
800: '#261f73',
|
|
89
|
+
900: '#221e5c',
|
|
90
90
|
},
|
|
91
91
|
red: {
|
|
92
92
|
'000': '#fee',
|
|
@@ -104,12 +104,12 @@ exports.palette = {
|
|
|
104
104
|
'000': '#fffdef',
|
|
105
105
|
100: '#fffbdd',
|
|
106
106
|
200: '#fff5b1',
|
|
107
|
-
300: '#
|
|
107
|
+
300: '#ffeb87',
|
|
108
108
|
400: '#ffdf5d',
|
|
109
109
|
500: '#ffd33d',
|
|
110
|
-
600: '#
|
|
111
|
-
700: '#
|
|
112
|
-
800: '#
|
|
110
|
+
600: '#f2c012',
|
|
111
|
+
700: '#cfa108',
|
|
112
|
+
800: '#9c7800',
|
|
113
113
|
900: '#735c0f',
|
|
114
114
|
},
|
|
115
115
|
white: '#fff',
|
|
@@ -117,15 +117,15 @@ exports.palette = {
|
|
|
117
117
|
},
|
|
118
118
|
dark: {
|
|
119
119
|
blue: {
|
|
120
|
-
'000': '#
|
|
121
|
-
100: '#
|
|
122
|
-
200: '#
|
|
123
|
-
300: '#
|
|
124
|
-
400: '#
|
|
125
|
-
500: '#
|
|
126
|
-
600: '#
|
|
127
|
-
700: '#
|
|
128
|
-
800: '#
|
|
120
|
+
'000': '#122447',
|
|
121
|
+
100: '#173366',
|
|
122
|
+
200: '#1e4894',
|
|
123
|
+
300: '#2362c4',
|
|
124
|
+
400: '#2d73e0',
|
|
125
|
+
500: '#4794fd',
|
|
126
|
+
600: '#61abff',
|
|
127
|
+
700: '#8fcaff',
|
|
128
|
+
800: '#addaff',
|
|
129
129
|
900: '#cae8ff',
|
|
130
130
|
},
|
|
131
131
|
gray: {
|
|
@@ -142,88 +142,88 @@ exports.palette = {
|
|
|
142
142
|
1000: '#fdfdfe',
|
|
143
143
|
},
|
|
144
144
|
green: {
|
|
145
|
-
'000': '#
|
|
146
|
-
100: '#
|
|
147
|
-
200: '#
|
|
148
|
-
300: '#
|
|
149
|
-
400: '#
|
|
150
|
-
500: '#
|
|
151
|
-
600: '#
|
|
152
|
-
700: '#
|
|
153
|
-
800: '#
|
|
154
|
-
900: '#
|
|
145
|
+
'000': '#1a2b20',
|
|
146
|
+
100: '#1d3b27',
|
|
147
|
+
200: '#255232',
|
|
148
|
+
300: '#256936',
|
|
149
|
+
400: '#2e853f',
|
|
150
|
+
500: '#38a04b',
|
|
151
|
+
600: '#4ab959',
|
|
152
|
+
700: '#65d372',
|
|
153
|
+
800: '#8ae592',
|
|
154
|
+
900: '#b9f0bd',
|
|
155
155
|
},
|
|
156
156
|
orange: {
|
|
157
|
-
'000': '#
|
|
158
|
-
100: '#
|
|
159
|
-
200: '#
|
|
160
|
-
300: '#
|
|
161
|
-
400: '#
|
|
162
|
-
500: '#
|
|
163
|
-
600: '#
|
|
164
|
-
700: '#
|
|
165
|
-
800: '#
|
|
166
|
-
900: '#
|
|
157
|
+
'000': '#2e1e17',
|
|
158
|
+
100: '#472a1d',
|
|
159
|
+
200: '#66361f',
|
|
160
|
+
300: '#8f4824',
|
|
161
|
+
400: '#ad5a2b',
|
|
162
|
+
500: '#d67233',
|
|
163
|
+
600: '#eb853d',
|
|
164
|
+
700: '#f5a35b',
|
|
165
|
+
800: '#fcc279',
|
|
166
|
+
900: '#fcd49f',
|
|
167
167
|
},
|
|
168
168
|
pink: {
|
|
169
|
-
'000': '#
|
|
170
|
-
100: '#
|
|
171
|
-
200: '#
|
|
172
|
-
300: '#
|
|
169
|
+
'000': '#3d182f',
|
|
170
|
+
100: '#571e40',
|
|
171
|
+
200: '#782a57',
|
|
172
|
+
300: '#9c356e',
|
|
173
173
|
400: '#bf4b8a',
|
|
174
|
-
500: '#
|
|
175
|
-
600: '#
|
|
174
|
+
500: '#de62a4',
|
|
175
|
+
600: '#f77ebd',
|
|
176
176
|
700: '#ff9bce',
|
|
177
177
|
800: '#ffbedd',
|
|
178
|
-
900: '#
|
|
178
|
+
900: '#ffcfe6',
|
|
179
179
|
},
|
|
180
180
|
primary: {
|
|
181
|
-
'000': '#
|
|
182
|
-
100: '#
|
|
183
|
-
200: '#
|
|
184
|
-
300: '#
|
|
185
|
-
400: '#
|
|
186
|
-
500: '#
|
|
187
|
-
600: '#
|
|
188
|
-
700: '#
|
|
181
|
+
'000': '#1b183d',
|
|
182
|
+
100: '#201d52',
|
|
183
|
+
200: '#2a2375',
|
|
184
|
+
300: '#342a9c',
|
|
185
|
+
400: '#4436c7',
|
|
186
|
+
500: '#5c49eb',
|
|
187
|
+
600: '#7766e8',
|
|
188
|
+
700: '#a498ed',
|
|
189
189
|
800: '#c9c2f2',
|
|
190
190
|
900: '#e4e0f5',
|
|
191
191
|
},
|
|
192
192
|
purple: {
|
|
193
|
-
'000': '#
|
|
194
|
-
100: '#
|
|
195
|
-
200: '#
|
|
193
|
+
'000': '#2b1d47',
|
|
194
|
+
100: '#3c2563',
|
|
195
|
+
200: '#553096',
|
|
196
196
|
300: '#6e40c9',
|
|
197
197
|
400: '#8957e5',
|
|
198
198
|
500: '#a371f7',
|
|
199
199
|
600: '#bc8cff',
|
|
200
200
|
700: '#d2a8ff',
|
|
201
201
|
800: '#e2c5ff',
|
|
202
|
-
900: '#
|
|
202
|
+
900: '#e9d6ff',
|
|
203
203
|
},
|
|
204
204
|
red: {
|
|
205
|
-
'000': '#
|
|
206
|
-
100: '#
|
|
207
|
-
200: '#
|
|
208
|
-
300: '#
|
|
209
|
-
400: '#
|
|
210
|
-
500: '#
|
|
211
|
-
600: '#
|
|
212
|
-
700: '#
|
|
213
|
-
800: '#
|
|
214
|
-
900: '#
|
|
205
|
+
'000': '#3d1515',
|
|
206
|
+
100: '#541c1f',
|
|
207
|
+
200: '#732225',
|
|
208
|
+
300: '#962926',
|
|
209
|
+
400: '#bd3939',
|
|
210
|
+
500: '#e0514a',
|
|
211
|
+
600: '#f76f65',
|
|
212
|
+
700: '#ff8d82',
|
|
213
|
+
800: '#ffb1a8',
|
|
214
|
+
900: '#ffd2cc',
|
|
215
215
|
},
|
|
216
216
|
yellow: {
|
|
217
|
-
'000': '#
|
|
218
|
-
100: '#
|
|
219
|
-
200: '#
|
|
220
|
-
300: '#
|
|
221
|
-
400: '#
|
|
222
|
-
500: '#
|
|
223
|
-
600: '#
|
|
224
|
-
700: '#
|
|
225
|
-
800: '#
|
|
226
|
-
900: '#
|
|
217
|
+
'000': '#30250a',
|
|
218
|
+
100: '#473510',
|
|
219
|
+
200: '#664b14',
|
|
220
|
+
300: '#856018',
|
|
221
|
+
400: '#a3751a',
|
|
222
|
+
500: '#bf8a1f',
|
|
223
|
+
600: '#d4a035',
|
|
224
|
+
700: '#e8bb51',
|
|
225
|
+
800: '#f2d06d',
|
|
226
|
+
900: '#fae296',
|
|
227
227
|
},
|
|
228
228
|
white: '#fff',
|
|
229
229
|
black: '#0d1117',
|
|
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.iconSize = exports.borderRadius = void 0;
|
|
4
4
|
exports.borderRadius = {
|
|
5
5
|
huge: 16,
|
|
6
|
-
large:
|
|
7
|
-
medium:
|
|
8
|
-
small:
|
|
6
|
+
large: 10,
|
|
7
|
+
medium: 6,
|
|
8
|
+
small: 4,
|
|
9
9
|
};
|
|
10
10
|
exports.iconSize = {
|
|
11
11
|
micro: 12,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const lightTheme: {
|
|
2
2
|
background: {
|
|
3
3
|
default: string;
|
|
4
|
-
|
|
4
|
+
screen: string;
|
|
5
5
|
secondary: string;
|
|
6
6
|
tertiary: string;
|
|
7
7
|
quaternary: string;
|
|
@@ -75,11 +75,20 @@ export declare const lightTheme: {
|
|
|
75
75
|
accent: string;
|
|
76
76
|
emphasis: string;
|
|
77
77
|
};
|
|
78
|
+
project: {
|
|
79
|
+
blue: string;
|
|
80
|
+
green: string;
|
|
81
|
+
yellow: string;
|
|
82
|
+
orange: string;
|
|
83
|
+
red: string;
|
|
84
|
+
pink: string;
|
|
85
|
+
purple: string;
|
|
86
|
+
};
|
|
78
87
|
};
|
|
79
88
|
export declare const darkTheme: {
|
|
80
89
|
background: {
|
|
81
90
|
default: string;
|
|
82
|
-
|
|
91
|
+
screen: string;
|
|
83
92
|
secondary: string;
|
|
84
93
|
tertiary: string;
|
|
85
94
|
quaternary: string;
|
|
@@ -153,4 +162,13 @@ export declare const darkTheme: {
|
|
|
153
162
|
accent: string;
|
|
154
163
|
emphasis: string;
|
|
155
164
|
};
|
|
165
|
+
project: {
|
|
166
|
+
blue: string;
|
|
167
|
+
green: string;
|
|
168
|
+
yellow: string;
|
|
169
|
+
orange: string;
|
|
170
|
+
red: string;
|
|
171
|
+
pink: string;
|
|
172
|
+
purple: string;
|
|
173
|
+
};
|
|
156
174
|
};
|
|
@@ -5,7 +5,7 @@ const palette_1 = require("./palette");
|
|
|
5
5
|
exports.lightTheme = {
|
|
6
6
|
background: {
|
|
7
7
|
default: palette_1.palette.light.white,
|
|
8
|
-
|
|
8
|
+
screen: palette_1.palette.light.gray[100],
|
|
9
9
|
secondary: palette_1.palette.light.gray[100],
|
|
10
10
|
tertiary: palette_1.palette.light.gray[200],
|
|
11
11
|
quaternary: palette_1.palette.light.gray[300],
|
|
@@ -79,11 +79,20 @@ exports.lightTheme = {
|
|
|
79
79
|
accent: palette_1.palette.light.primary[300],
|
|
80
80
|
emphasis: palette_1.palette.light.yellow[300],
|
|
81
81
|
},
|
|
82
|
+
project: {
|
|
83
|
+
blue: '#6299d9',
|
|
84
|
+
green: '#54a767',
|
|
85
|
+
yellow: '#e5c145',
|
|
86
|
+
orange: '#d9864c',
|
|
87
|
+
red: '#d95757',
|
|
88
|
+
pink: '#d977b2',
|
|
89
|
+
purple: '#8a66cc',
|
|
90
|
+
},
|
|
82
91
|
};
|
|
83
92
|
exports.darkTheme = {
|
|
84
93
|
background: {
|
|
85
94
|
default: palette_1.palette.dark.gray['000'],
|
|
86
|
-
|
|
95
|
+
screen: palette_1.palette.dark.gray['000'],
|
|
87
96
|
secondary: palette_1.palette.dark.gray[200],
|
|
88
97
|
tertiary: palette_1.palette.dark.gray[300],
|
|
89
98
|
quaternary: palette_1.palette.dark.gray[400],
|
|
@@ -157,4 +166,13 @@ exports.darkTheme = {
|
|
|
157
166
|
accent: palette_1.palette.dark.primary[700],
|
|
158
167
|
emphasis: palette_1.palette.dark.yellow[300],
|
|
159
168
|
},
|
|
169
|
+
project: {
|
|
170
|
+
blue: '#395a80',
|
|
171
|
+
green: '#32633d',
|
|
172
|
+
yellow: '#8a6319',
|
|
173
|
+
orange: '#8c5731',
|
|
174
|
+
red: '#8c3838',
|
|
175
|
+
pink: '#8a4c71',
|
|
176
|
+
purple: '#4e3973',
|
|
177
|
+
},
|
|
160
178
|
};
|