@acorex/styles 21.0.1-next.61 → 21.0.1-next.62
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/package.json +1 -1
- package/themes/default.css +30 -0
package/package.json
CHANGED
package/themes/default.css
CHANGED
|
@@ -891,6 +891,36 @@ html.dark {
|
|
|
891
891
|
border-color: var(--color-border-default);
|
|
892
892
|
}
|
|
893
893
|
|
|
894
|
+
@utility text {
|
|
895
|
+
color: var(--color-text-default);
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
@utility border-s-default {
|
|
899
|
+
border-inline-start-width: 1px;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
@utility border-e-default {
|
|
903
|
+
border-inline-end-width: 1px;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
@utility border-t-default {
|
|
907
|
+
border-top-width: 1px;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
@utility border-b-default {
|
|
911
|
+
border-bottom-width: 1px;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
@utility border-x-default {
|
|
915
|
+
border-left-width: 1px;
|
|
916
|
+
border-right-width: 1px;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
@utility border-y-default {
|
|
920
|
+
border-top-width: 1px;
|
|
921
|
+
border-bottom-width: 1px;
|
|
922
|
+
}
|
|
923
|
+
|
|
894
924
|
/* Primary Surfaces */
|
|
895
925
|
|
|
896
926
|
@utility primary-lightest-surface {
|