@momo-kits/native-kits 0.162.2-sp.4-debug → 0.162.2-sp.5-debug
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/compose/build.gradle.kts +1 -1
- package/compose/compose.podspec +1 -1
- package/gradle.properties +1 -1
- package/ios/Button/Button.swift +1 -1
- package/ios/Colors+Radius+Spacing/Colors.swift +12 -12
- package/ios/Colors+Radius+Spacing/MoMoUIKitsResources.swift +32 -0
- package/ios/Colors+Radius+Spacing/Theme.swift +15 -15
- package/ios/Resources/MoMoUIKitsColors.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Background.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Border.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Card.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Contents.json +6 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Error.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryDark.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/PrimaryLight.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Success.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Text.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/TextSecondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/Contents.json +9 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-pressed.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-selected.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-surface.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-tonal.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/gradient.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-container.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-primary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-default.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-disable.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-hint.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-secondary.colorset/Contents.json +38 -0
- package/ios/Resources/MoMoUIKitsColors.xcassets/Warning.colorset/Contents.json +38 -0
- package/ios/native-kits.podspec +4 -1
- package/ios-demo/MoMoUIKitsDemo.podspec +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xEB",
|
|
8
|
+
"green": "0xEB",
|
|
9
|
+
"blue": "0xF2",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x30",
|
|
20
|
+
"green": "0x30",
|
|
21
|
+
"blue": "0x30",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xDF",
|
|
8
|
+
"green": "0xDF",
|
|
9
|
+
"blue": "0xE6",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x1A",
|
|
20
|
+
"green": "0x1A",
|
|
21
|
+
"blue": "0x1A",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xFE",
|
|
8
|
+
"green": "0xF4",
|
|
9
|
+
"blue": "0xFA",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xFE",
|
|
20
|
+
"green": "0xF8",
|
|
21
|
+
"blue": "0xFC",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xFF",
|
|
8
|
+
"green": "0xFF",
|
|
9
|
+
"blue": "0xFF",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x1E",
|
|
20
|
+
"green": "0x1E",
|
|
21
|
+
"blue": "0x1E",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/background-tonal.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xFD",
|
|
8
|
+
"green": "0xEA",
|
|
9
|
+
"blue": "0xF4",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xFE",
|
|
20
|
+
"green": "0xF4",
|
|
21
|
+
"blue": "0xFA",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-default.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xE8",
|
|
8
|
+
"green": "0xE8",
|
|
9
|
+
"blue": "0xE8",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x2A",
|
|
20
|
+
"green": "0x2A",
|
|
21
|
+
"blue": "0x2A",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/border-disable.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xF9",
|
|
8
|
+
"green": "0xF9",
|
|
9
|
+
"blue": "0xF9",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x24",
|
|
20
|
+
"green": "0x24",
|
|
21
|
+
"blue": "0x24",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xFD",
|
|
8
|
+
"green": "0xCA",
|
|
9
|
+
"blue": "0xDE",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xFD",
|
|
20
|
+
"green": "0xCA",
|
|
21
|
+
"blue": "0xDE",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xEB",
|
|
8
|
+
"green": "0x2F",
|
|
9
|
+
"blue": "0x96",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xED",
|
|
20
|
+
"green": "0x43",
|
|
21
|
+
"blue": "0xA0",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xF7",
|
|
8
|
+
"green": "0xAC",
|
|
9
|
+
"blue": "0xD5",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xFB",
|
|
20
|
+
"green": "0xD5",
|
|
21
|
+
"blue": "0xEA",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-container.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xD6",
|
|
8
|
+
"green": "0xF4",
|
|
9
|
+
"blue": "0xDE",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xD6",
|
|
20
|
+
"green": "0xF4",
|
|
21
|
+
"blue": "0xDE",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-primary.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x34",
|
|
8
|
+
"green": "0xC7",
|
|
9
|
+
"blue": "0x59",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x34",
|
|
20
|
+
"green": "0xC7",
|
|
21
|
+
"blue": "0x59",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/success-secondary.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xAE",
|
|
8
|
+
"green": "0xE9",
|
|
9
|
+
"blue": "0xBD",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xAE",
|
|
20
|
+
"green": "0xE9",
|
|
21
|
+
"blue": "0xBD",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-default.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x30",
|
|
8
|
+
"green": "0x32",
|
|
9
|
+
"blue": "0x33",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xFF",
|
|
20
|
+
"green": "0xFF",
|
|
21
|
+
"blue": "0xFF",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-disable.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0xC6",
|
|
8
|
+
"green": "0xC6",
|
|
9
|
+
"blue": "0xC6",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x50",
|
|
20
|
+
"green": "0x50",
|
|
21
|
+
"blue": "0x50",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x72",
|
|
8
|
+
"green": "0x72",
|
|
9
|
+
"blue": "0x72",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0x72",
|
|
20
|
+
"green": "0x72",
|
|
21
|
+
"blue": "0x72",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|
package/ios/Resources/MoMoUIKitsColors.xcassets/ThemeColors/text-secondary.colorset/Contents.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"colors": [
|
|
3
|
+
{
|
|
4
|
+
"color": {
|
|
5
|
+
"color-space": "srgb",
|
|
6
|
+
"components": {
|
|
7
|
+
"red": "0x48",
|
|
8
|
+
"green": "0x48",
|
|
9
|
+
"blue": "0x48",
|
|
10
|
+
"alpha": "1.000"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"idiom": "universal"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"color": {
|
|
17
|
+
"color-space": "srgb",
|
|
18
|
+
"components": {
|
|
19
|
+
"red": "0xB0",
|
|
20
|
+
"green": "0xB0",
|
|
21
|
+
"blue": "0xB0",
|
|
22
|
+
"alpha": "1.000"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"idiom": "universal",
|
|
26
|
+
"appearances": [
|
|
27
|
+
{
|
|
28
|
+
"appearance": "luminosity",
|
|
29
|
+
"value": "dark"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info": {
|
|
35
|
+
"author": "xcode",
|
|
36
|
+
"version": 1
|
|
37
|
+
}
|
|
38
|
+
}
|