matcha-theme 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/abstracts/_breakpoints.scss +33 -0
- package/abstracts/_colors.scss +422 -0
- package/abstracts/_elevation.scss +102 -0
- package/abstracts/_functions.scss +321 -0
- package/abstracts/_grid.scss +130 -0
- package/abstracts/_order.scss +46 -0
- package/abstracts/_position.scss +51 -0
- package/abstracts/_sizes.scss +74 -0
- package/abstracts/_spacings.scss +236 -0
- package/abstracts/_typography.scss +137 -0
- package/base/_helpers.scss +3019 -0
- package/base/_reset.scss +9 -0
- package/base/_typography.scss +242 -0
- package/components/matcha-audio-player.scss +37 -0
- package/components/matcha-buttons.scss +91 -0
- package/components/matcha-cards.scss +93 -0
- package/components/matcha-color-pick.scss +32 -0
- package/components/matcha-draggable.scss +25 -0
- package/components/matcha-header.scss +326 -0
- package/components/matcha-horizontal-tree.scss +275 -0
- package/components/matcha-icons.scss +11 -0
- package/components/matcha-progress-bar.scss +107 -0
- package/components/matcha-scrollbar.scss +36 -0
- package/components/matcha-scrollbox-shadow.scss +127 -0
- package/components/matcha-table.scss +259 -0
- package/fonts/CircularStd-Bold.eot +0 -0
- package/fonts/CircularStd-Bold.otf +0 -0
- package/fonts/CircularStd-Bold.svg +13532 -0
- package/fonts/CircularStd-Bold.ttf +0 -0
- package/fonts/CircularStd-Bold.woff +0 -0
- package/fonts/CircularStd-Bold.woff2 +0 -0
- package/fonts/CircularStd-Medium.eot +0 -0
- package/fonts/CircularStd-Medium.otf +0 -0
- package/fonts/CircularStd-Medium.svg +13511 -0
- package/fonts/CircularStd-Medium.ttf +0 -0
- package/fonts/CircularStd-Medium.woff +0 -0
- package/fonts/CircularStd-Medium.woff2 +0 -0
- package/fonts/CircularStd-Regular.eot +0 -0
- package/fonts/CircularStd-Regular.otf +0 -0
- package/fonts/CircularStd-Regular.svg +5562 -0
- package/fonts/CircularStd-Regular.ttf +0 -0
- package/fonts/CircularStd-Regular.woff +0 -0
- package/main.scss +87 -0
- package/package.json +11 -0
- package/tokens/_animations.scss +37 -0
- package/tokens/_breakpoints.scss +46 -0
- package/tokens/_color-tokens.scss +1419 -0
- package/tokens/_elevation-tokens.scss +14 -0
- package/tokens/_spacing-tokens.scss +96 -0
- package/tokens/_typography-tokens.scss +25 -0
- package/vendors/angular-editor.scss +56 -0
- package/vendors/angular-material-fixes.scss +21 -0
- package/vendors/calendar.scss +2876 -0
- package/vendors/charts.scss +92 -0
- package/vendors/ng5-slider.scss +56 -0
- package/vendors/ngx-material-timepicker.scss +50 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// The default duration value for elevation transitions.
|
|
2
|
+
$elevation-transition-duration: 280ms !default;
|
|
3
|
+
|
|
4
|
+
// The default easing value for elevation transitions.
|
|
5
|
+
$elevation-transition-timing-function: $matcha-fast-out-slow-in-timing-function;
|
|
6
|
+
|
|
7
|
+
// The default color for elevation shadows.
|
|
8
|
+
$elevation-color: black !default;
|
|
9
|
+
|
|
10
|
+
// The default opacity scaling value for elevation shadows.
|
|
11
|
+
$elevation-opacity: 1 !default;
|
|
12
|
+
|
|
13
|
+
// Prefix for elevation-related selectors.
|
|
14
|
+
$_elevation-prefix: "elevation-z-";
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
$unit-base-pixels: px;
|
|
2
|
+
$unit-base-percent: .0%;
|
|
3
|
+
|
|
4
|
+
$rate-radius-none: 0;
|
|
5
|
+
$rate-radius-minimum: 2;
|
|
6
|
+
$rate-radius-small: 4;
|
|
7
|
+
$rate-radius-medium: 8;
|
|
8
|
+
$rate-radius-large: 16;
|
|
9
|
+
$rate-radius-wider: 9999;
|
|
10
|
+
|
|
11
|
+
$border-radius-none: 0px; // 0px
|
|
12
|
+
$border-radius-minimum: 2px; // 2px
|
|
13
|
+
$border-radius-small: 4px; // 4px
|
|
14
|
+
$border-radius-medium: 8px; // 8px
|
|
15
|
+
$border-radius-large: 16px; // 16px
|
|
16
|
+
$border-radius-wider: 9999px; // 9999px
|
|
17
|
+
$border-width-none: 0px; // 0px
|
|
18
|
+
$border-width-thin: 2px; // 2px
|
|
19
|
+
$border-width-thick: 4px; // 4px
|
|
20
|
+
$border-width-thicker: 8px; // 8px
|
|
21
|
+
$border-style-none: none;
|
|
22
|
+
$border-style-solid: solid;
|
|
23
|
+
$border-style-dashed: dashed;
|
|
24
|
+
$border-style-dotted: dotted;
|
|
25
|
+
|
|
26
|
+
$size-padding-minimum: 8px;
|
|
27
|
+
$size-padding-xxsmall: 16px;
|
|
28
|
+
$size-padding-xsmall: 24px;
|
|
29
|
+
$size-padding-small: 32px;
|
|
30
|
+
$size-padding-medium: 40px;
|
|
31
|
+
$size-padding-big: 48px;
|
|
32
|
+
$size-padding-bigger: 56px;
|
|
33
|
+
$size-padding-tall: 64px;
|
|
34
|
+
$size-padding-taller: 72px;
|
|
35
|
+
$size-padding-large: 80px;
|
|
36
|
+
$size-padding-xlarge: 88px;
|
|
37
|
+
$size-padding-xxlarge: 96px;
|
|
38
|
+
$size-padding-larger: 104px;
|
|
39
|
+
$size-padding-largest: 112px;
|
|
40
|
+
$size-padding-wider: 120px;
|
|
41
|
+
$spacing-stack-min: 8px 0; // 8px
|
|
42
|
+
$spacing-stack-xxs: 16px 0; // 16px
|
|
43
|
+
$spacing-stack-xs: 24px 0; // 24px
|
|
44
|
+
$spacing-stack-s: 32px 0; // 32px
|
|
45
|
+
$spacing-stack-m: 40px 0; // 40px
|
|
46
|
+
$spacing-stack-big: 48px 0; // 48px
|
|
47
|
+
$spacing-stack-bgg: 56px 0; // 56px
|
|
48
|
+
$spacing-stack-tll: 64px 0; // 64px
|
|
49
|
+
$spacing-stack-tlr: 72px 0; // 72px
|
|
50
|
+
$spacing-stack-lg: 80px 0; // 80px
|
|
51
|
+
$spacing-stack-xl: 88px 0; // 88px
|
|
52
|
+
$spacing-stack-xxl: 96px 0; // 96px
|
|
53
|
+
$spacing-stack-lgr: 104px 0; // 104px
|
|
54
|
+
$spacing-stack-lgs: 112px 0; // 112px
|
|
55
|
+
$spacing-inline-min: 0 8px; // 8px
|
|
56
|
+
$spacing-inline-xxs: 0 16px; // 16px
|
|
57
|
+
$spacing-inline-xs: 0 24px; // 24px
|
|
58
|
+
$spacing-inline-s: 0 32px; // 32px
|
|
59
|
+
$spacing-inline-m: 0 40px; // 40px
|
|
60
|
+
$spacing-inline-big: 0 48px; // 48px
|
|
61
|
+
$spacing-inline-bgg: 0 56px; // 56px
|
|
62
|
+
$spacing-inline-tll: 0 64px; // 64px
|
|
63
|
+
$spacing-inline-tlr: 0 72px; // 72px
|
|
64
|
+
$spacing-inline-lg: 0 80px; // 80px
|
|
65
|
+
$spacing-inline-xl: 0 88px; // 88px
|
|
66
|
+
$spacing-inline-xxl: 0 96px; // 96px
|
|
67
|
+
$spacing-inline-lgr: 0 104px; // 104px
|
|
68
|
+
$spacing-inline-lgs: 0 112px; // 112px
|
|
69
|
+
$spacing-inset-min: 8px 8px; // 8px
|
|
70
|
+
$spacing-inset-xxs: 16px 16px; // 16px
|
|
71
|
+
$spacing-inset-xs: 24px 24px; // 24px
|
|
72
|
+
$spacing-inset-s: 32px 32px; // 32px
|
|
73
|
+
$spacing-inset-m: 40px 40px; // 40px
|
|
74
|
+
$spacing-inset-big: 48px 48px; // 48px
|
|
75
|
+
$spacing-inset-bgg: 56px 56px; // 56px
|
|
76
|
+
$spacing-inset-tll: 64px 64px; // 64px
|
|
77
|
+
$spacing-inset-tlr: 72px 72px; // 72px
|
|
78
|
+
$spacing-inset-lg: 80px 80px; // 80px
|
|
79
|
+
$spacing-inset-xl: 88px 88px; // 88px
|
|
80
|
+
$spacing-inset-xxl: 96px 96px; // 96px
|
|
81
|
+
$spacing-inset-lgr: 104px 104px; // 104px
|
|
82
|
+
$spacing-inset-lgs: 112px 112px; // 112px
|
|
83
|
+
$spacing-squish-min: 8px 16px; // 8px
|
|
84
|
+
$spacing-squish-xxs: 16px 24px; // 16px
|
|
85
|
+
$spacing-squish-xs: 24px 32px; // 24px
|
|
86
|
+
$spacing-squish-s: 32px 40px; // 32px
|
|
87
|
+
$spacing-squish-m: 40px 48px; // 40px
|
|
88
|
+
$spacing-squish-big: 48px 56px; // 48px
|
|
89
|
+
$spacing-squish-bgg: 56px 64px; // 56px
|
|
90
|
+
$spacing-squish-tll: 64px 72px; // 64px
|
|
91
|
+
$spacing-squish-tlr: 72px 80px; // 72px
|
|
92
|
+
$spacing-squish-lg: 80px 88px; // 80px
|
|
93
|
+
$spacing-squish-xl: 88px 96px; // 88px
|
|
94
|
+
$spacing-squish-xxl: 96px 104px; // 96px
|
|
95
|
+
$spacing-squish-lgr: 104px 112px; // 104px
|
|
96
|
+
$spacing-squish-lgs: 112px 120px; // 112px
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
$size-font-xxsmall: 10px;
|
|
2
|
+
$size-font-xsmall: 12px;
|
|
3
|
+
$size-font-small: 14px;
|
|
4
|
+
$size-font-medium: 16px;
|
|
5
|
+
$size-font-big: 18px;
|
|
6
|
+
$size-font-large: 20px;
|
|
7
|
+
$size-font-xlarge: 24px;
|
|
8
|
+
$size-font-xxlarge: 32px;
|
|
9
|
+
$size-font-2-xxlarge: 40px;
|
|
10
|
+
$size-font-weight-thin: 100;
|
|
11
|
+
$size-font-weight-extra-light: 200;
|
|
12
|
+
$size-font-weight-light: 300;
|
|
13
|
+
$size-font-weight-normal: 400;
|
|
14
|
+
$size-font-weight-medium: 500;
|
|
15
|
+
$size-font-weight-semi-bold: 600;
|
|
16
|
+
$size-font-weight-bold: 700;
|
|
17
|
+
$size-font-weight-extra-bold: 800;
|
|
18
|
+
$size-font-weight-black: 900;
|
|
19
|
+
$size-font-base: 16px;
|
|
20
|
+
$size-line-height-minimum: 32px;
|
|
21
|
+
$size-line-height-small: 40px;
|
|
22
|
+
$size-line-height-medium: 48px;
|
|
23
|
+
$size-line-height-large: 56px;
|
|
24
|
+
$size-line-height-xlarge: 64px;
|
|
25
|
+
$size-line-height-xxlarge: 72px;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
@mixin vendor-angular-editor($theme) {
|
|
2
|
+
$is-dark-theme: map-get($theme, is-dark);
|
|
3
|
+
$primary: map-get($theme, primary);
|
|
4
|
+
$accent: map-get($theme, accent);
|
|
5
|
+
$warn: map-get($theme, warn);
|
|
6
|
+
$background: map-get($theme, background);
|
|
7
|
+
$foreground: map-get($theme, foreground);
|
|
8
|
+
|
|
9
|
+
.angular-editor {
|
|
10
|
+
.angular-editor-toolbar {
|
|
11
|
+
font: 100 0.8rem/15px Roboto, Arial, sans-serif !important;
|
|
12
|
+
background-color: map-get($background, disabled) !important;
|
|
13
|
+
padding: 8px !important;
|
|
14
|
+
// height: 56px;
|
|
15
|
+
border: 0px !important;
|
|
16
|
+
|
|
17
|
+
.angular-editor-toolbar-set {
|
|
18
|
+
.angular-editor-button {
|
|
19
|
+
background-color: transparent !important;
|
|
20
|
+
vertical-align: middle !important;
|
|
21
|
+
border: 0 !important;
|
|
22
|
+
padding: 8px !important;
|
|
23
|
+
float: left !important;
|
|
24
|
+
border-radius: 50px;
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
background: map-get($background, card-alpha) !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&.active {
|
|
31
|
+
background: map-get($background, card) !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
i {
|
|
35
|
+
color: map-get($foreground, text);
|
|
36
|
+
height: 24px !important;
|
|
37
|
+
width: 24px !important;
|
|
38
|
+
font-size: 16px !important;
|
|
39
|
+
line-height: 24px !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.angular-editor-textarea {
|
|
46
|
+
min-height: 100px !important;
|
|
47
|
+
height: 30vh !important;
|
|
48
|
+
padding: 16px !important;
|
|
49
|
+
border: 0px !important;
|
|
50
|
+
background-color: transparent !important;
|
|
51
|
+
overflow-x: hidden !important;
|
|
52
|
+
overflow-y: auto !important;
|
|
53
|
+
position: relative !important;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@mixin vendor-angular-material-fixes($theme) {
|
|
2
|
+
$primary: map-get($theme, primary);
|
|
3
|
+
$accent: map-get($theme, accent);
|
|
4
|
+
$warn: map-get($theme, warn);
|
|
5
|
+
$background: map-get($theme, background);
|
|
6
|
+
$foreground: map-get($theme, foreground);
|
|
7
|
+
|
|
8
|
+
// -------------------------------------------------------------------------------------------------------------------
|
|
9
|
+
// @ ANGULAR MATERIAL - Matcha Style
|
|
10
|
+
// -------------------------------------------------------------------------------------------------------------------
|
|
11
|
+
.mat-mdc-outlined-button {
|
|
12
|
+
--mdc-outlined-button-container-shape: 8px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.mat-mdc-raised-button {
|
|
16
|
+
--mdc-protected-button-container-height: 36px;
|
|
17
|
+
--mdc-protected-button-container-shape: 8px;
|
|
18
|
+
--mdc-protected-button-container-elevation: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
}
|