@acorex/styles 19.10.1 → 19.10.2
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/README.md +22 -20
- package/package.json +1 -1
- package/themes/default.scss +12 -5
package/README.md
CHANGED
@@ -1,32 +1,34 @@
|
|
1
|
-
# ACoreX Styles
|
2
1
|
|
3
|
-
|
4
|
-
|
5
|
-
<
|
6
|
-
|
7
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://acorexui.com/acorex-slang-dark.svg">
|
8
|
-
<img alt="Acorex - Design System, UI Framework, App Builder" src="https://acorexui.com/acorex-slang.svg" width="100%">
|
9
|
-
</picture>
|
10
|
-
</p>
|
11
|
-
|
12
|
-
<div style="text-align: center;">
|
2
|
+
<picture>
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://acorexui.com/public/acorex-slang-dark.svg">
|
4
|
+
<img alt="Acorex - Design System, UI Framework, App Builder" src="https://acorexui.com/public/acorex-slang-dark.svg" width="100%">
|
5
|
+
</picture>
|
13
6
|
|
14
7
|
[]()
|
15
8
|
|
16
|
-
|
9
|
+
# ACoreX
|
10
|
+
|
11
|
+
ACoreX is an UI framework based on angular. With over 50+ beautiful fully responsive and accessible components for everyone.
|
17
12
|
|
18
13
|
A few links to help you get started:
|
19
14
|
|
20
15
|
- [ACoreX: Documentation, Guides](https://acorexui.com)
|
21
16
|
|
22
|
-
##
|
17
|
+
## Team Leads
|
18
|
+
|
19
|
+
| Arash Oshnoudi | Ali Safari |
|
20
|
+
|--------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|
|
21
|
+
|  |  |
|
22
|
+
|
23
|
+
## Develop Team
|
24
|
+
|
25
|
+
| Reza Safari | Matin Givi | Shahin Kahrizi | Mohammad Parsaeifard | Mojtaba Erfan Rad |
|
26
|
+
|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
|
27
|
+
|  |  |  |  |  |
|
23
28
|
|
24
|
-
| Arash Oshnoudi | Ali Safari | Matin Givi | Reza Safari |
|
25
|
-
| ------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
|
26
|
-
|  |  |  |  |
|
27
29
|
|
28
|
-
|
30
|
+
## Design Team
|
29
31
|
|
30
|
-
|
|
31
|
-
|
32
|
-
|  |  |
|
package/package.json
CHANGED
package/themes/default.scss
CHANGED
@@ -5,13 +5,20 @@ Color themes that have multiple fixed primary colors, etc. that can range from 5
|
|
5
5
|
*/
|
6
6
|
$theme-colors: (
|
7
7
|
'primary': oklch(0.623 0.214 259.815),
|
8
|
-
'secondary':
|
9
|
-
|
10
|
-
|
8
|
+
'secondary': (
|
9
|
+
oklch(24.65% 0.0531 250.05),
|
10
|
+
oklch(47.03% 0.0531 250.05),
|
11
|
+
),
|
12
|
+
'success': (
|
13
|
+
oklch(62.71% 0.1699 149.21),
|
14
|
+
oklch(80.03% 0.1821 151.71),
|
15
|
+
),
|
16
|
+
'warning': (
|
17
|
+
oklch(81.17% 0.188 70.08),
|
18
|
+
oklch(86.5% 0.188 70.08),
|
19
|
+
),
|
11
20
|
'danger': (
|
12
|
-
// Danger color for light mode
|
13
21
|
oklch(0.645 0.246 16.439),
|
14
|
-
// Danger color for dark mode
|
15
22
|
oklch(0.712 0.194 13.428),
|
16
23
|
),
|
17
24
|
);
|