@incremark/theme 0.4.0-alpha.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/chat.css +149 -95
- package/dist/chat.css.map +1 -1
- package/dist/incremark.css +96 -45
- package/dist/incremark.css.map +1 -1
- package/dist/index.d.ts +13 -0
- package/dist/index.js +52 -9
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/chat.css
CHANGED
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
font-family: var(--incremark-typography-font-family-base);
|
|
22
22
|
line-height: var(--incremark-typography-line-height-normal);
|
|
23
23
|
color: var(--incremark-color-text-primary);
|
|
24
|
-
min-height: 100%;
|
|
25
24
|
}
|
|
26
25
|
/* ============ 链接样式 ============ */
|
|
27
26
|
.incremark a {
|
|
@@ -158,24 +157,24 @@
|
|
|
158
157
|
/* h1 特殊样式:带下边框 */
|
|
159
158
|
/* h6 特殊样式:颜色较淡 */
|
|
160
159
|
}
|
|
161
|
-
.incremark-heading
|
|
160
|
+
.incremark-heading--h1 {
|
|
162
161
|
font-size: var(--incremark-typography-font-size-heading-h1);
|
|
163
162
|
border-bottom: 1px solid var(--incremark-color-border-default);
|
|
164
163
|
padding-bottom: var(--incremark-spacing-sm);
|
|
165
164
|
}
|
|
166
|
-
.incremark-heading
|
|
165
|
+
.incremark-heading--h2 {
|
|
167
166
|
font-size: var(--incremark-typography-font-size-heading-h2);
|
|
168
167
|
}
|
|
169
|
-
.incremark-heading
|
|
168
|
+
.incremark-heading--h3 {
|
|
170
169
|
font-size: var(--incremark-typography-font-size-heading-h3);
|
|
171
170
|
}
|
|
172
|
-
.incremark-heading
|
|
171
|
+
.incremark-heading--h4 {
|
|
173
172
|
font-size: var(--incremark-typography-font-size-heading-h4);
|
|
174
173
|
}
|
|
175
|
-
.incremark-heading
|
|
174
|
+
.incremark-heading--h5 {
|
|
176
175
|
font-size: var(--incremark-typography-font-size-heading-h5);
|
|
177
176
|
}
|
|
178
|
-
.incremark-heading
|
|
177
|
+
.incremark-heading--h6 {
|
|
179
178
|
font-size: var(--incremark-typography-font-size-heading-h6);
|
|
180
179
|
color: var(--incremark-color-text-secondary);
|
|
181
180
|
}
|
|
@@ -818,67 +817,62 @@
|
|
|
818
817
|
color: var(--incremark-color-text-inverse);
|
|
819
818
|
}
|
|
820
819
|
.im-button--solid.im-button--primary {
|
|
821
|
-
background: var(--incremark-
|
|
820
|
+
background: var(--incremark-color-brand-6);
|
|
822
821
|
}
|
|
823
822
|
.im-button--solid.im-button--primary:hover {
|
|
824
|
-
background: var(--incremark-
|
|
823
|
+
background: var(--incremark-color-brand-5);
|
|
825
824
|
}
|
|
826
825
|
.im-button--solid.im-button--primary:active {
|
|
827
|
-
background: var(--incremark-
|
|
828
|
-
filter: brightness(0.95);
|
|
826
|
+
background: var(--incremark-color-brand-7);
|
|
829
827
|
}
|
|
830
828
|
.im-button--solid.im-button--neutral {
|
|
831
829
|
background: var(--incremark-color-neutral-8);
|
|
832
830
|
}
|
|
833
831
|
.im-button--solid.im-button--neutral:hover {
|
|
834
|
-
background: var(--incremark-color-neutral-
|
|
832
|
+
background: var(--incremark-color-neutral-7);
|
|
835
833
|
}
|
|
836
834
|
.im-button--solid.im-button--neutral:active {
|
|
837
835
|
background: var(--incremark-color-neutral-9);
|
|
838
|
-
filter: brightness(0.95);
|
|
839
836
|
}
|
|
840
837
|
.im-button--solid.im-button--success {
|
|
841
838
|
background: var(--incremark-base-colors-green-6);
|
|
842
839
|
}
|
|
843
840
|
.im-button--solid.im-button--success:hover {
|
|
844
|
-
background: var(--incremark-base-colors-green-
|
|
841
|
+
background: var(--incremark-base-colors-green-5);
|
|
845
842
|
}
|
|
846
843
|
.im-button--solid.im-button--success:active {
|
|
847
844
|
background: var(--incremark-base-colors-green-7);
|
|
848
|
-
filter: brightness(0.95);
|
|
849
845
|
}
|
|
850
846
|
.im-button--solid.im-button--warning {
|
|
851
847
|
background: var(--incremark-base-colors-orange-6);
|
|
852
848
|
}
|
|
853
849
|
.im-button--solid.im-button--warning:hover {
|
|
854
|
-
background: var(--incremark-base-colors-orange-
|
|
850
|
+
background: var(--incremark-base-colors-orange-5);
|
|
855
851
|
}
|
|
856
852
|
.im-button--solid.im-button--warning:active {
|
|
857
853
|
background: var(--incremark-base-colors-orange-7);
|
|
858
|
-
filter: brightness(0.95);
|
|
859
854
|
}
|
|
860
855
|
.im-button--solid.im-button--error {
|
|
861
856
|
background: var(--incremark-base-colors-red-6);
|
|
862
857
|
}
|
|
863
858
|
.im-button--solid.im-button--error:hover {
|
|
864
|
-
background: var(--incremark-base-colors-red-
|
|
859
|
+
background: var(--incremark-base-colors-red-5);
|
|
865
860
|
}
|
|
866
861
|
.im-button--solid.im-button--error:active {
|
|
867
862
|
background: var(--incremark-base-colors-red-7);
|
|
868
|
-
filter: brightness(0.95);
|
|
869
863
|
}
|
|
870
864
|
.im-button--outline {
|
|
871
865
|
background: transparent;
|
|
872
866
|
}
|
|
873
867
|
.im-button--outline.im-button--primary {
|
|
874
|
-
color: var(--incremark-
|
|
875
|
-
border-color: var(--incremark-
|
|
868
|
+
color: var(--incremark-color-brand-6);
|
|
869
|
+
border-color: var(--incremark-color-brand-6);
|
|
876
870
|
}
|
|
877
871
|
.im-button--outline.im-button--primary:hover {
|
|
878
|
-
background: var(--incremark-
|
|
872
|
+
background: var(--incremark-color-brand-2);
|
|
879
873
|
}
|
|
880
874
|
.im-button--outline.im-button--primary:active {
|
|
881
|
-
background: var(--incremark-
|
|
875
|
+
background: var(--incremark-color-brand-3);
|
|
882
876
|
}
|
|
883
877
|
.im-button--outline.im-button--neutral {
|
|
884
878
|
color: var(--incremark-color-text-primary);
|
|
@@ -925,15 +919,14 @@
|
|
|
925
919
|
border-color: transparent;
|
|
926
920
|
}
|
|
927
921
|
.im-button--soft.im-button--primary {
|
|
928
|
-
color: var(--incremark-
|
|
929
|
-
background: var(--incremark-
|
|
922
|
+
color: var(--incremark-color-brand-6);
|
|
923
|
+
background: var(--incremark-color-brand-2);
|
|
930
924
|
}
|
|
931
925
|
.im-button--soft.im-button--primary:hover {
|
|
932
|
-
background: var(--incremark-
|
|
926
|
+
background: var(--incremark-color-brand-3);
|
|
933
927
|
}
|
|
934
928
|
.im-button--soft.im-button--primary:active {
|
|
935
|
-
background: var(--incremark-
|
|
936
|
-
filter: brightness(0.97);
|
|
929
|
+
background: var(--incremark-color-brand-4);
|
|
937
930
|
}
|
|
938
931
|
.im-button--soft.im-button--neutral {
|
|
939
932
|
color: var(--incremark-color-text-primary);
|
|
@@ -953,8 +946,7 @@
|
|
|
953
946
|
background: var(--incremark-base-colors-green-3);
|
|
954
947
|
}
|
|
955
948
|
.im-button--soft.im-button--success:active {
|
|
956
|
-
background: var(--incremark-base-colors-green-
|
|
957
|
-
filter: brightness(0.97);
|
|
949
|
+
background: var(--incremark-base-colors-green-4);
|
|
958
950
|
}
|
|
959
951
|
.im-button--soft.im-button--warning {
|
|
960
952
|
color: var(--incremark-base-colors-orange-6);
|
|
@@ -964,8 +956,7 @@
|
|
|
964
956
|
background: var(--incremark-base-colors-orange-3);
|
|
965
957
|
}
|
|
966
958
|
.im-button--soft.im-button--warning:active {
|
|
967
|
-
background: var(--incremark-base-colors-orange-
|
|
968
|
-
filter: brightness(0.97);
|
|
959
|
+
background: var(--incremark-base-colors-orange-4);
|
|
969
960
|
}
|
|
970
961
|
.im-button--soft.im-button--error {
|
|
971
962
|
color: var(--incremark-base-colors-red-6);
|
|
@@ -975,20 +966,18 @@
|
|
|
975
966
|
background: var(--incremark-base-colors-red-3);
|
|
976
967
|
}
|
|
977
968
|
.im-button--soft.im-button--error:active {
|
|
978
|
-
background: var(--incremark-base-colors-red-
|
|
979
|
-
filter: brightness(0.97);
|
|
969
|
+
background: var(--incremark-base-colors-red-4);
|
|
980
970
|
}
|
|
981
971
|
.im-button--subtle.im-button--primary {
|
|
982
|
-
color: var(--incremark-
|
|
983
|
-
background: var(--incremark-
|
|
984
|
-
border-color: var(--incremark-
|
|
972
|
+
color: var(--incremark-color-brand-6);
|
|
973
|
+
background: var(--incremark-color-brand-2);
|
|
974
|
+
border-color: var(--incremark-color-brand-6);
|
|
985
975
|
}
|
|
986
976
|
.im-button--subtle.im-button--primary:hover {
|
|
987
|
-
background: var(--incremark-
|
|
977
|
+
background: var(--incremark-color-brand-3);
|
|
988
978
|
}
|
|
989
979
|
.im-button--subtle.im-button--primary:active {
|
|
990
|
-
background: var(--incremark-
|
|
991
|
-
filter: brightness(0.97);
|
|
980
|
+
background: var(--incremark-color-brand-4);
|
|
992
981
|
}
|
|
993
982
|
.im-button--subtle.im-button--neutral {
|
|
994
983
|
color: var(--incremark-color-text-primary);
|
|
@@ -1010,8 +999,7 @@
|
|
|
1010
999
|
background: var(--incremark-base-colors-green-3);
|
|
1011
1000
|
}
|
|
1012
1001
|
.im-button--subtle.im-button--success:active {
|
|
1013
|
-
background: var(--incremark-base-colors-green-
|
|
1014
|
-
filter: brightness(0.97);
|
|
1002
|
+
background: var(--incremark-base-colors-green-4);
|
|
1015
1003
|
}
|
|
1016
1004
|
.im-button--subtle.im-button--warning {
|
|
1017
1005
|
color: var(--incremark-base-colors-orange-6);
|
|
@@ -1022,8 +1010,7 @@
|
|
|
1022
1010
|
background: var(--incremark-base-colors-orange-3);
|
|
1023
1011
|
}
|
|
1024
1012
|
.im-button--subtle.im-button--warning:active {
|
|
1025
|
-
background: var(--incremark-base-colors-orange-
|
|
1026
|
-
filter: brightness(0.97);
|
|
1013
|
+
background: var(--incremark-base-colors-orange-4);
|
|
1027
1014
|
}
|
|
1028
1015
|
.im-button--subtle.im-button--error {
|
|
1029
1016
|
color: var(--incremark-base-colors-red-6);
|
|
@@ -1034,21 +1021,20 @@
|
|
|
1034
1021
|
background: var(--incremark-base-colors-red-3);
|
|
1035
1022
|
}
|
|
1036
1023
|
.im-button--subtle.im-button--error:active {
|
|
1037
|
-
background: var(--incremark-base-colors-red-
|
|
1038
|
-
filter: brightness(0.97);
|
|
1024
|
+
background: var(--incremark-base-colors-red-4);
|
|
1039
1025
|
}
|
|
1040
1026
|
.im-button--ghost {
|
|
1041
1027
|
background: transparent;
|
|
1042
1028
|
border-color: transparent;
|
|
1043
1029
|
}
|
|
1044
1030
|
.im-button--ghost.im-button--primary {
|
|
1045
|
-
color: var(--incremark-
|
|
1031
|
+
color: var(--incremark-color-brand-6);
|
|
1046
1032
|
}
|
|
1047
1033
|
.im-button--ghost.im-button--primary:hover {
|
|
1048
|
-
background: var(--incremark-
|
|
1034
|
+
background: var(--incremark-color-brand-2);
|
|
1049
1035
|
}
|
|
1050
1036
|
.im-button--ghost.im-button--primary:active {
|
|
1051
|
-
background: var(--incremark-
|
|
1037
|
+
background: var(--incremark-color-brand-3);
|
|
1052
1038
|
}
|
|
1053
1039
|
.im-button--ghost.im-button--neutral {
|
|
1054
1040
|
color: var(--incremark-color-text-primary);
|
|
@@ -1093,10 +1079,10 @@
|
|
|
1093
1079
|
padding: 0;
|
|
1094
1080
|
}
|
|
1095
1081
|
.im-button--link.im-button--primary {
|
|
1096
|
-
color: var(--incremark-
|
|
1082
|
+
color: var(--incremark-color-brand-6);
|
|
1097
1083
|
}
|
|
1098
1084
|
.im-button--link.im-button--primary:hover {
|
|
1099
|
-
color: var(--incremark-
|
|
1085
|
+
color: var(--incremark-color-brand-5);
|
|
1100
1086
|
text-decoration: underline;
|
|
1101
1087
|
}
|
|
1102
1088
|
.im-button--link.im-button--neutral {
|
|
@@ -1110,21 +1096,21 @@
|
|
|
1110
1096
|
color: var(--incremark-base-colors-green-6);
|
|
1111
1097
|
}
|
|
1112
1098
|
.im-button--link.im-button--success:hover {
|
|
1113
|
-
color: var(--incremark-base-colors-green-
|
|
1099
|
+
color: var(--incremark-base-colors-green-5);
|
|
1114
1100
|
text-decoration: underline;
|
|
1115
1101
|
}
|
|
1116
1102
|
.im-button--link.im-button--warning {
|
|
1117
1103
|
color: var(--incremark-base-colors-orange-6);
|
|
1118
1104
|
}
|
|
1119
1105
|
.im-button--link.im-button--warning:hover {
|
|
1120
|
-
color: var(--incremark-base-colors-orange-
|
|
1106
|
+
color: var(--incremark-base-colors-orange-5);
|
|
1121
1107
|
text-decoration: underline;
|
|
1122
1108
|
}
|
|
1123
1109
|
.im-button--link.im-button--error {
|
|
1124
1110
|
color: var(--incremark-base-colors-red-6);
|
|
1125
1111
|
}
|
|
1126
1112
|
.im-button--link.im-button--error:hover {
|
|
1127
|
-
color: var(--incremark-base-colors-red-
|
|
1113
|
+
color: var(--incremark-base-colors-red-5);
|
|
1128
1114
|
text-decoration: underline;
|
|
1129
1115
|
}
|
|
1130
1116
|
.im-button--block {
|
|
@@ -1184,10 +1170,10 @@
|
|
|
1184
1170
|
background: var(--incremark-color-neutral-5);
|
|
1185
1171
|
}
|
|
1186
1172
|
.im-button--active.im-button--ghost.im-button--primary {
|
|
1187
|
-
background: var(--incremark-
|
|
1173
|
+
background: var(--incremark-color-brand-3);
|
|
1188
1174
|
}
|
|
1189
1175
|
.im-button--active.im-button--ghost.im-button--primary:hover {
|
|
1190
|
-
background: var(--incremark-
|
|
1176
|
+
background: var(--incremark-color-brand-3);
|
|
1191
1177
|
}
|
|
1192
1178
|
.im-button--active.im-button--soft.im-button--neutral {
|
|
1193
1179
|
background: var(--incremark-color-neutral-5);
|
|
@@ -1914,7 +1900,7 @@
|
|
|
1914
1900
|
margin-bottom: 0;
|
|
1915
1901
|
}
|
|
1916
1902
|
.im-message-bubble__content--filled {
|
|
1917
|
-
background-color: var(--incremark-color-background-
|
|
1903
|
+
background-color: var(--incremark-color-background-muted);
|
|
1918
1904
|
padding: var(--incremark-spacing-sm) var(--incremark-spacing-md);
|
|
1919
1905
|
}
|
|
1920
1906
|
.im-message-bubble__content--outlined {
|
|
@@ -1927,6 +1913,10 @@
|
|
|
1927
1913
|
.im-message-bubble__content--round {
|
|
1928
1914
|
border-radius: var(--incremark-border-radius-lg);
|
|
1929
1915
|
}
|
|
1916
|
+
.im-message-bubble__content--primary {
|
|
1917
|
+
background-color: var(--incremark-color-brand-primary);
|
|
1918
|
+
color: var(--incremark-color-text-inverse);
|
|
1919
|
+
}
|
|
1930
1920
|
.im-message-bubble__footer {
|
|
1931
1921
|
font-size: var(--incremark-typography-font-size-sm);
|
|
1932
1922
|
color: var(--incremark-color-text-secondary);
|
|
@@ -1938,6 +1928,9 @@
|
|
|
1938
1928
|
.im-message-bubble--end .im-message-bubble__footer {
|
|
1939
1929
|
text-align: right;
|
|
1940
1930
|
}
|
|
1931
|
+
.im-message-bubble--end .im-message-bubble__content {
|
|
1932
|
+
max-width: 85%;
|
|
1933
|
+
}
|
|
1941
1934
|
/**
|
|
1942
1935
|
* MessageActions 组件样式
|
|
1943
1936
|
*/
|
|
@@ -2061,11 +2054,27 @@
|
|
|
2061
2054
|
--incremark-base-colors-blue-9: #0E439A;
|
|
2062
2055
|
--incremark-base-colors-blue-10: #05327C;
|
|
2063
2056
|
--incremark-base-colors-blue-primary: #3B82F6;
|
|
2064
|
-
--incremark-base-colors-blue-hover: #
|
|
2065
|
-
--incremark-base-colors-blue-active: #
|
|
2057
|
+
--incremark-base-colors-blue-hover: #639EFF;
|
|
2058
|
+
--incremark-base-colors-blue-active: #296BD7;
|
|
2066
2059
|
--incremark-base-colors-blue-light: #D6E6FF;
|
|
2067
2060
|
--incremark-base-colors-blue-lighter: #FCFDFF;
|
|
2068
2061
|
--incremark-base-colors-blue-dark: #0E439A;
|
|
2062
|
+
--incremark-base-colors-teal-1: #D1FAF6;
|
|
2063
|
+
--incremark-base-colors-teal-2: #9EE6DF;
|
|
2064
|
+
--incremark-base-colors-teal-3: #71D1C9;
|
|
2065
|
+
--incremark-base-colors-teal-4: #49BDB3;
|
|
2066
|
+
--incremark-base-colors-teal-5: #28A89D;
|
|
2067
|
+
--incremark-base-colors-teal-6: #0D9488;
|
|
2068
|
+
--incremark-base-colors-teal-7: #04756B;
|
|
2069
|
+
--incremark-base-colors-teal-8: #00574F;
|
|
2070
|
+
--incremark-base-colors-teal-9: #003833;
|
|
2071
|
+
--incremark-base-colors-teal-10: #001A17;
|
|
2072
|
+
--incremark-base-colors-teal-primary: #0D9488;
|
|
2073
|
+
--incremark-base-colors-teal-hover: #28A89D;
|
|
2074
|
+
--incremark-base-colors-teal-active: #04756B;
|
|
2075
|
+
--incremark-base-colors-teal-light: #9EE6DF;
|
|
2076
|
+
--incremark-base-colors-teal-lighter: #D1FAF6;
|
|
2077
|
+
--incremark-base-colors-teal-dark: #003833;
|
|
2069
2078
|
--incremark-base-colors-purple-1: #FFFFFF;
|
|
2070
2079
|
--incremark-base-colors-purple-2: #F8F1FF;
|
|
2071
2080
|
--incremark-base-colors-purple-3: #E5CBFF;
|
|
@@ -2077,8 +2086,8 @@
|
|
|
2077
2086
|
--incremark-base-colors-purple-9: #5E1E9B;
|
|
2078
2087
|
--incremark-base-colors-purple-10: #49127D;
|
|
2079
2088
|
--incremark-base-colors-purple-primary: #A855F7;
|
|
2080
|
-
--incremark-base-colors-purple-hover: #
|
|
2081
|
-
--incremark-base-colors-purple-active: #
|
|
2089
|
+
--incremark-base-colors-purple-hover: #C07EFF;
|
|
2090
|
+
--incremark-base-colors-purple-active: #8E40D8;
|
|
2082
2091
|
--incremark-base-colors-purple-light: #F8F1FF;
|
|
2083
2092
|
--incremark-base-colors-purple-lighter: #FFFFFF;
|
|
2084
2093
|
--incremark-base-colors-purple-dark: #5E1E9B;
|
|
@@ -2093,8 +2102,8 @@
|
|
|
2093
2102
|
--incremark-base-colors-green-9: #005D3E;
|
|
2094
2103
|
--incremark-base-colors-green-10: #003F2A;
|
|
2095
2104
|
--incremark-base-colors-green-primary: #10B981;
|
|
2096
|
-
--incremark-base-colors-green-hover: #
|
|
2097
|
-
--incremark-base-colors-green-active: #
|
|
2105
|
+
--incremark-base-colors-green-hover: #31CD99;
|
|
2106
|
+
--incremark-base-colors-green-active: #069A69;
|
|
2098
2107
|
--incremark-base-colors-green-light: #AFFFE5;
|
|
2099
2108
|
--incremark-base-colors-green-lighter: #D5FFF1;
|
|
2100
2109
|
--incremark-base-colors-green-dark: #005D3E;
|
|
@@ -2109,8 +2118,8 @@
|
|
|
2109
2118
|
--incremark-base-colors-red-9: #931414;
|
|
2110
2119
|
--incremark-base-colors-red-10: #750A0A;
|
|
2111
2120
|
--incremark-base-colors-red-primary: #EF4444;
|
|
2112
|
-
--incremark-base-colors-red-hover: #
|
|
2113
|
-
--incremark-base-colors-red-active: #
|
|
2121
|
+
--incremark-base-colors-red-hover: #FF6F6F;
|
|
2122
|
+
--incremark-base-colors-red-active: #D03131;
|
|
2114
2123
|
--incremark-base-colors-red-light: #FFE2E2;
|
|
2115
2124
|
--incremark-base-colors-red-lighter: #FFFFFF;
|
|
2116
2125
|
--incremark-base-colors-red-dark: #931414;
|
|
@@ -2125,8 +2134,8 @@
|
|
|
2125
2134
|
--incremark-base-colors-orange-9: #9D4000;
|
|
2126
2135
|
--incremark-base-colors-orange-10: #7F3400;
|
|
2127
2136
|
--incremark-base-colors-orange-primary: #F97316;
|
|
2128
|
-
--incremark-base-colors-orange-hover: #
|
|
2129
|
-
--incremark-base-colors-orange-active: #
|
|
2137
|
+
--incremark-base-colors-orange-hover: #FF8C3D;
|
|
2138
|
+
--incremark-base-colors-orange-active: #DA5E08;
|
|
2130
2139
|
--incremark-base-colors-orange-light: #FFD0B0;
|
|
2131
2140
|
--incremark-base-colors-orange-lighter: #FFE7D6;
|
|
2132
2141
|
--incremark-base-colors-orange-dark: #9D4000;
|
|
@@ -2141,8 +2150,8 @@
|
|
|
2141
2150
|
--incremark-base-colors-cyan-9: #006778;
|
|
2142
2151
|
--incremark-base-colors-cyan-10: #004D5A;
|
|
2143
2152
|
--incremark-base-colors-cyan-primary: #06B6D4;
|
|
2144
|
-
--incremark-base-colors-cyan-hover: #
|
|
2145
|
-
--incremark-base-colors-cyan-active: #
|
|
2153
|
+
--incremark-base-colors-cyan-hover: #29CDE8;
|
|
2154
|
+
--incremark-base-colors-cyan-active: #009BB5;
|
|
2146
2155
|
--incremark-base-colors-cyan-light: #A0F1FF;
|
|
2147
2156
|
--incremark-base-colors-cyan-lighter: #C6F7FF;
|
|
2148
2157
|
--incremark-base-colors-cyan-dark: #006778;
|
|
@@ -2157,8 +2166,8 @@
|
|
|
2157
2166
|
--incremark-base-colors-indigo-9: #1F38A3;
|
|
2158
2167
|
--incremark-base-colors-indigo-10: #132885;
|
|
2159
2168
|
--incremark-base-colors-indigo-primary: #5776FF;
|
|
2160
|
-
--incremark-base-colors-indigo-hover: #
|
|
2161
|
-
--incremark-base-colors-indigo-active: #
|
|
2169
|
+
--incremark-base-colors-indigo-hover: #7D95FF;
|
|
2170
|
+
--incremark-base-colors-indigo-active: #415FE0;
|
|
2162
2171
|
--incremark-base-colors-indigo-light: #F0F3FF;
|
|
2163
2172
|
--incremark-base-colors-indigo-lighter: #FFFFFF;
|
|
2164
2173
|
--incremark-base-colors-indigo-dark: #1F38A3;
|
|
@@ -2172,9 +2181,19 @@
|
|
|
2172
2181
|
--incremark-color-neutral-8: #374151;
|
|
2173
2182
|
--incremark-color-neutral-9: #1f2937;
|
|
2174
2183
|
--incremark-color-neutral-10: #111827;
|
|
2184
|
+
--incremark-color-brand-1: #FFFFFF;
|
|
2185
|
+
--incremark-color-brand-2: #F0F3FF;
|
|
2186
|
+
--incremark-color-brand-3: #CAD4FF;
|
|
2187
|
+
--incremark-color-brand-4: #A4B4FF;
|
|
2188
|
+
--incremark-color-brand-5: #7D95FF;
|
|
2189
|
+
--incremark-color-brand-6: #5776FF;
|
|
2190
|
+
--incremark-color-brand-7: #415FE0;
|
|
2191
|
+
--incremark-color-brand-8: #2F4AC2;
|
|
2192
|
+
--incremark-color-brand-9: #1F38A3;
|
|
2193
|
+
--incremark-color-brand-10: #132885;
|
|
2175
2194
|
--incremark-color-brand-primary: #5776FF;
|
|
2176
|
-
--incremark-color-brand-primary-hover: #
|
|
2177
|
-
--incremark-color-brand-primary-active: #
|
|
2195
|
+
--incremark-color-brand-primary-hover: #7D95FF;
|
|
2196
|
+
--incremark-color-brand-primary-active: #415FE0;
|
|
2178
2197
|
--incremark-color-brand-primary-light: #F0F3FF;
|
|
2179
2198
|
--incremark-color-text-primary: #374151;
|
|
2180
2199
|
--incremark-color-text-secondary: #6b7280;
|
|
@@ -2188,13 +2207,13 @@
|
|
|
2188
2207
|
--incremark-color-border-strong: #6b7280;
|
|
2189
2208
|
--incremark-color-code-inline-background: #f3f4f6;
|
|
2190
2209
|
--incremark-color-code-inline-text: #374151;
|
|
2191
|
-
--incremark-color-code-block-background: #
|
|
2192
|
-
--incremark-color-code-block-text: #
|
|
2193
|
-
--incremark-color-code-header-background: #
|
|
2210
|
+
--incremark-color-code-block-background: #fafbfc;
|
|
2211
|
+
--incremark-color-code-block-text: #1f2937;
|
|
2212
|
+
--incremark-color-code-header-background: #f3f4f6;
|
|
2194
2213
|
--incremark-color-status-pending: #A855F7;
|
|
2195
2214
|
--incremark-color-status-completed: #10B981;
|
|
2196
2215
|
--incremark-color-interactive-link: #5776FF;
|
|
2197
|
-
--incremark-color-interactive-link-hover: #
|
|
2216
|
+
--incremark-color-interactive-link-hover: #7D95FF;
|
|
2198
2217
|
--incremark-color-interactive-link-visited: #5E1E9B;
|
|
2199
2218
|
--incremark-color-interactive-checked: #10B981;
|
|
2200
2219
|
--incremark-typography-font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
@@ -2264,11 +2283,27 @@
|
|
|
2264
2283
|
--incremark-base-colors-blue-9: #0E439A;
|
|
2265
2284
|
--incremark-base-colors-blue-10: #05327C;
|
|
2266
2285
|
--incremark-base-colors-blue-primary: #3B82F6;
|
|
2267
|
-
--incremark-base-colors-blue-hover: #
|
|
2268
|
-
--incremark-base-colors-blue-active: #
|
|
2286
|
+
--incremark-base-colors-blue-hover: #639EFF;
|
|
2287
|
+
--incremark-base-colors-blue-active: #296BD7;
|
|
2269
2288
|
--incremark-base-colors-blue-light: #D6E6FF;
|
|
2270
2289
|
--incremark-base-colors-blue-lighter: #FCFDFF;
|
|
2271
2290
|
--incremark-base-colors-blue-dark: #0E439A;
|
|
2291
|
+
--incremark-base-colors-teal-1: #D1FAF6;
|
|
2292
|
+
--incremark-base-colors-teal-2: #9EE6DF;
|
|
2293
|
+
--incremark-base-colors-teal-3: #71D1C9;
|
|
2294
|
+
--incremark-base-colors-teal-4: #49BDB3;
|
|
2295
|
+
--incremark-base-colors-teal-5: #28A89D;
|
|
2296
|
+
--incremark-base-colors-teal-6: #0D9488;
|
|
2297
|
+
--incremark-base-colors-teal-7: #04756B;
|
|
2298
|
+
--incremark-base-colors-teal-8: #00574F;
|
|
2299
|
+
--incremark-base-colors-teal-9: #003833;
|
|
2300
|
+
--incremark-base-colors-teal-10: #001A17;
|
|
2301
|
+
--incremark-base-colors-teal-primary: #0D9488;
|
|
2302
|
+
--incremark-base-colors-teal-hover: #28A89D;
|
|
2303
|
+
--incremark-base-colors-teal-active: #04756B;
|
|
2304
|
+
--incremark-base-colors-teal-light: #9EE6DF;
|
|
2305
|
+
--incremark-base-colors-teal-lighter: #D1FAF6;
|
|
2306
|
+
--incremark-base-colors-teal-dark: #003833;
|
|
2272
2307
|
--incremark-base-colors-indigo-1: #FFFFFF;
|
|
2273
2308
|
--incremark-base-colors-indigo-2: #FFFFFF;
|
|
2274
2309
|
--incremark-base-colors-indigo-3: #F0F3FF;
|
|
@@ -2280,8 +2315,8 @@
|
|
|
2280
2315
|
--incremark-base-colors-indigo-9: #384BA3;
|
|
2281
2316
|
--incremark-base-colors-indigo-10: #263885;
|
|
2282
2317
|
--incremark-base-colors-indigo-primary: #7D95FF;
|
|
2283
|
-
--incremark-base-colors-indigo-hover: #
|
|
2284
|
-
--incremark-base-colors-indigo-active: #
|
|
2318
|
+
--incremark-base-colors-indigo-hover: #A3B4FF;
|
|
2319
|
+
--incremark-base-colors-indigo-active: #637AE0;
|
|
2285
2320
|
--incremark-base-colors-indigo-light: #FFFFFF;
|
|
2286
2321
|
--incremark-base-colors-indigo-lighter: #FFFFFF;
|
|
2287
2322
|
--incremark-base-colors-indigo-dark: #384BA3;
|
|
@@ -2296,8 +2331,8 @@
|
|
|
2296
2331
|
--incremark-base-colors-purple-9: #6E3CA0;
|
|
2297
2332
|
--incremark-base-colors-purple-10: #562A82;
|
|
2298
2333
|
--incremark-base-colors-purple-primary: #C084FC;
|
|
2299
|
-
--incremark-base-colors-purple-hover: #
|
|
2300
|
-
--incremark-base-colors-purple-active: #
|
|
2334
|
+
--incremark-base-colors-purple-hover: #D5ACFF;
|
|
2335
|
+
--incremark-base-colors-purple-active: #A369DD;
|
|
2301
2336
|
--incremark-base-colors-purple-light: #FFFFFF;
|
|
2302
2337
|
--incremark-base-colors-purple-lighter: #FFFFFF;
|
|
2303
2338
|
--incremark-base-colors-purple-dark: #6E3CA0;
|
|
@@ -2312,8 +2347,8 @@
|
|
|
2312
2347
|
--incremark-base-colors-green-9: #0B7750;
|
|
2313
2348
|
--incremark-base-colors-green-10: #04593A;
|
|
2314
2349
|
--incremark-base-colors-green-primary: #34D399;
|
|
2315
|
-
--incremark-base-colors-green-hover: #
|
|
2316
|
-
--incremark-base-colors-green-active: #
|
|
2350
|
+
--incremark-base-colors-green-hover: #5CE7B4;
|
|
2351
|
+
--incremark-base-colors-green-active: #23B480;
|
|
2317
2352
|
--incremark-base-colors-green-light: #D8FFF1;
|
|
2318
2353
|
--incremark-base-colors-green-lighter: #FEFFFF;
|
|
2319
2354
|
--incremark-base-colors-green-dark: #0B7750;
|
|
@@ -2328,8 +2363,8 @@
|
|
|
2328
2363
|
--incremark-base-colors-red-9: #931414;
|
|
2329
2364
|
--incremark-base-colors-red-10: #750A0A;
|
|
2330
2365
|
--incremark-base-colors-red-primary: #EF4444;
|
|
2331
|
-
--incremark-base-colors-red-hover: #
|
|
2332
|
-
--incremark-base-colors-red-active: #
|
|
2366
|
+
--incremark-base-colors-red-hover: #FF6F6F;
|
|
2367
|
+
--incremark-base-colors-red-active: #D03131;
|
|
2333
2368
|
--incremark-base-colors-red-light: #FFE2E2;
|
|
2334
2369
|
--incremark-base-colors-red-lighter: #FFFFFF;
|
|
2335
2370
|
--incremark-base-colors-red-dark: #931414;
|
|
@@ -2344,8 +2379,8 @@
|
|
|
2344
2379
|
--incremark-base-colors-orange-9: #9D4000;
|
|
2345
2380
|
--incremark-base-colors-orange-10: #7F3400;
|
|
2346
2381
|
--incremark-base-colors-orange-primary: #F97316;
|
|
2347
|
-
--incremark-base-colors-orange-hover: #
|
|
2348
|
-
--incremark-base-colors-orange-active: #
|
|
2382
|
+
--incremark-base-colors-orange-hover: #FF8C3D;
|
|
2383
|
+
--incremark-base-colors-orange-active: #DA5E08;
|
|
2349
2384
|
--incremark-base-colors-orange-light: #FFD0B0;
|
|
2350
2385
|
--incremark-base-colors-orange-lighter: #FFE7D6;
|
|
2351
2386
|
--incremark-base-colors-orange-dark: #9D4000;
|
|
@@ -2360,8 +2395,8 @@
|
|
|
2360
2395
|
--incremark-base-colors-cyan-9: #006778;
|
|
2361
2396
|
--incremark-base-colors-cyan-10: #004D5A;
|
|
2362
2397
|
--incremark-base-colors-cyan-primary: #06B6D4;
|
|
2363
|
-
--incremark-base-colors-cyan-hover: #
|
|
2364
|
-
--incremark-base-colors-cyan-active: #
|
|
2398
|
+
--incremark-base-colors-cyan-hover: #29CDE8;
|
|
2399
|
+
--incremark-base-colors-cyan-active: #009BB5;
|
|
2365
2400
|
--incremark-base-colors-cyan-light: #A0F1FF;
|
|
2366
2401
|
--incremark-base-colors-cyan-lighter: #C6F7FF;
|
|
2367
2402
|
--incremark-base-colors-cyan-dark: #006778;
|
|
@@ -2375,10 +2410,20 @@
|
|
|
2375
2410
|
--incremark-color-neutral-8: #f1f3f8;
|
|
2376
2411
|
--incremark-color-neutral-9: #f8f9fc;
|
|
2377
2412
|
--incremark-color-neutral-10: #ffffff;
|
|
2413
|
+
--incremark-color-brand-1: #FFFFFF;
|
|
2414
|
+
--incremark-color-brand-2: #FFFFFF;
|
|
2415
|
+
--incremark-color-brand-3: #F0F3FF;
|
|
2416
|
+
--incremark-color-brand-4: #CAD3FF;
|
|
2417
|
+
--incremark-color-brand-5: #A3B4FF;
|
|
2418
|
+
--incremark-color-brand-6: #7D95FF;
|
|
2419
|
+
--incremark-color-brand-7: #637AE0;
|
|
2420
|
+
--incremark-color-brand-8: #4C61C2;
|
|
2421
|
+
--incremark-color-brand-9: #384BA3;
|
|
2422
|
+
--incremark-color-brand-10: #263885;
|
|
2378
2423
|
--incremark-color-brand-primary: #7D95FF;
|
|
2379
|
-
--incremark-color-brand-primary-hover: #
|
|
2380
|
-
--incremark-color-brand-primary-active: #
|
|
2381
|
-
--incremark-color-brand-primary-light: #
|
|
2424
|
+
--incremark-color-brand-primary-hover: #A3B4FF;
|
|
2425
|
+
--incremark-color-brand-primary-active: #637AE0;
|
|
2426
|
+
--incremark-color-brand-primary-light: #384BA3;
|
|
2382
2427
|
--incremark-color-text-primary: #f1f3f8;
|
|
2383
2428
|
--incremark-color-text-secondary: #e2e5ec;
|
|
2384
2429
|
--incremark-color-text-tertiary: #cdd1da;
|
|
@@ -2397,7 +2442,7 @@
|
|
|
2397
2442
|
--incremark-color-status-pending: #C084FC;
|
|
2398
2443
|
--incremark-color-status-completed: #34D399;
|
|
2399
2444
|
--incremark-color-interactive-link: #7D95FF;
|
|
2400
|
-
--incremark-color-interactive-link-hover: #
|
|
2445
|
+
--incremark-color-interactive-link-hover: #A3B4FF;
|
|
2401
2446
|
--incremark-color-interactive-link-visited: #FFFFFF;
|
|
2402
2447
|
--incremark-color-interactive-checked: #34D399;
|
|
2403
2448
|
--incremark-typography-font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
@@ -2734,3 +2779,12 @@
|
|
|
2734
2779
|
color: var(--incremark-color-text-tertiary);
|
|
2735
2780
|
line-height: var(--incremark-typography-line-height-normal);
|
|
2736
2781
|
}
|
|
2782
|
+
/**
|
|
2783
|
+
* MessageList 组件样式
|
|
2784
|
+
*/
|
|
2785
|
+
.im-message-list {
|
|
2786
|
+
display: flex;
|
|
2787
|
+
flex-direction: column;
|
|
2788
|
+
gap: 16px;
|
|
2789
|
+
padding: 16px;
|
|
2790
|
+
}
|