@shuriken-ui/tailwind 4.0.0-alpha.6 → 4.0.0-alpha.8

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.
Files changed (59) hide show
  1. package/lib/css/focus.css +2 -9
  2. package/lib/css/mark.css +0 -2
  3. package/lib/css/mask.css +0 -2
  4. package/lib/css/slimscroll.css +4 -2
  5. package/lib/index.css +5 -53
  6. package/lib/theme.css +37 -28
  7. package/package.json +2 -2
  8. package/lib/css/accordion.css +0 -175
  9. package/lib/css/autocomplete.css +0 -520
  10. package/lib/css/avatar-group.css +0 -137
  11. package/lib/css/avatar.css +0 -737
  12. package/lib/css/breadcrumb.css +0 -62
  13. package/lib/css/button-action.css +0 -107
  14. package/lib/css/button-close.css +0 -116
  15. package/lib/css/button-group.css +0 -235
  16. package/lib/css/button-icon.css +0 -96
  17. package/lib/css/button.css +0 -564
  18. package/lib/css/card.css +0 -68
  19. package/lib/css/checkbox.css +0 -98
  20. package/lib/css/dropdown-divider.css +0 -5
  21. package/lib/css/dropdown-item.css +0 -61
  22. package/lib/css/dropdown.css +0 -101
  23. package/lib/css/fullscreen-dropfile.css +0 -62
  24. package/lib/css/heading.css +0 -77
  25. package/lib/css/icon-box.css +0 -304
  26. package/lib/css/input-file-regular.css +0 -254
  27. package/lib/css/input-file.css +0 -223
  28. package/lib/css/input-help-text.css +0 -6
  29. package/lib/css/input-number.css +0 -479
  30. package/lib/css/input.css +0 -408
  31. package/lib/css/kbd.css +0 -93
  32. package/lib/css/label.css +0 -5
  33. package/lib/css/link.css +0 -7
  34. package/lib/css/list.css +0 -23
  35. package/lib/css/listbox.css +0 -528
  36. package/lib/css/message-text.css +0 -71
  37. package/lib/css/message.css +0 -243
  38. package/lib/css/modal.css +0 -50
  39. package/lib/css/pagination.css +0 -92
  40. package/lib/css/paragraph.css +0 -77
  41. package/lib/css/placeholder-page.css +0 -43
  42. package/lib/css/placeload.css +0 -11
  43. package/lib/css/progress-circle.css +0 -17
  44. package/lib/css/progress.css +0 -89
  45. package/lib/css/prose.css +0 -22
  46. package/lib/css/radio.css +0 -72
  47. package/lib/css/select.css +0 -407
  48. package/lib/css/snack.css +0 -100
  49. package/lib/css/switch-ball.css +0 -93
  50. package/lib/css/switch-thin.css +0 -75
  51. package/lib/css/tab-slider.css +0 -189
  52. package/lib/css/tabs.css +0 -173
  53. package/lib/css/tag.css +0 -311
  54. package/lib/css/text.css +0 -77
  55. package/lib/css/textarea.css +0 -239
  56. package/lib/css/theme-switch.css +0 -64
  57. package/lib/css/theme-toggle.css +0 -61
  58. package/lib/css/toast.css +0 -131
  59. package/lib/css/tooltip.css +0 -98
@@ -1,98 +0,0 @@
1
- /* @utility nui-checkbox */
2
-
3
- @utility nui-checkbox {
4
- @apply relative inline-flex items-start gap-1;
5
-
6
- &.nui-checkbox-rounded-sm .nui-checkbox-outer, &.nui-checkbox-rounded-sm .nui-checkbox-inner {
7
- @apply rounded-sm;
8
- }
9
-
10
- &.nui-checkbox-rounded-md .nui-checkbox-outer, &.nui-checkbox-rounded-md .nui-checkbox-inner {
11
- @apply rounded-md;
12
- }
13
-
14
- &.nui-checkbox-rounded-lg .nui-checkbox-outer, &.nui-checkbox-rounded-lg .nui-checkbox-inner {
15
- @apply rounded-lg;
16
- }
17
-
18
- &.nui-checkbox-rounded-full .nui-checkbox-outer, &.nui-checkbox-rounded-full .nui-checkbox-inner {
19
- @apply rounded-full;
20
- }
21
- }
22
- @utility nui-checkbox-outer {
23
- @apply nui-focus relative flex items-center justify-center h-5 w-5 shrink-0 cursor-pointer disabled:cursor-not-allowed overflow-hidden;
24
- }
25
- @utility nui-checkbox-inner {
26
- @apply absolute start-0 top-0 z-0 h-full w-full;
27
- @apply bg-white dark:bg-muted-700;
28
- @apply border-2 border-muted-400 dark:border-muted-700;
29
- }
30
- @utility nui-checkbox-icon-check {
31
- @apply pointer-events-none absolute z-10 fill-current translate-y-6 opacity-0;
32
- @apply h-2.5 w-2.5;
33
- @apply transition-all duration-300;
34
- }
35
- @utility nui-checkbox-icon-indeterminate {
36
- @apply pointer-events-none absolute z-10 fill-current translate-y-6 opacity-0;
37
- @apply h-2.5 w-2.5;
38
- @apply transition-all duration-300;
39
- }
40
- @utility nui-checkbox-input {
41
- @apply absolute z-20 h-5 w-5 cursor-pointer disabled:cursor-not-allowed opacity-0;
42
-
43
- &:checked ~ .nui-checkbox-inner, &:indeterminate ~ .nui-checkbox-inner {
44
- @apply border-current dark:border-current;
45
- }
46
-
47
- &:checked ~ .nui-checkbox-icon-check {
48
- @apply translate-y-0 opacity-100;
49
- }
50
-
51
- &:indeterminate ~ .nui-checkbox-icon-check {
52
- @apply !translate-y-6;
53
- }
54
-
55
- &:indeterminate ~ .nui-checkbox-icon-indeterminate {
56
- @apply !translate-y-0 !opacity-100;
57
- }
58
- }
59
- @utility nui-checkbox-label-wrapper {
60
- @apply inline-flex flex-col;
61
- }
62
- @utility nui-checkbox-label-text {
63
- @apply font-sans text-sm ms-1 cursor-pointer select-none;
64
- @apply text-muted-400 dark:text-muted-400;
65
- }
66
- @utility nui-checkbox-error {
67
- @apply ms-1 inline-block;
68
- }
69
- @utility nui-checkbox-default {
70
- @apply text-muted-600 dark:text-muted-200;
71
- }
72
- @utility nui-checkbox-muted {
73
- @apply text-muted-400 dark:text-muted-400;
74
- }
75
- @utility nui-checkbox-light {
76
- @apply text-white dark:text-white;
77
- }
78
- @utility nui-checkbox-dark {
79
- @apply text-muted-900 dark:text-muted-100;
80
- }
81
- @utility nui-checkbox-black {
82
- @apply text-black dark:text-white;
83
- }
84
- @utility nui-checkbox-primary {
85
- @apply text-primary-500 dark:text-primary-500;
86
- }
87
- @utility nui-checkbox-info {
88
- @apply text-info-500 dark:text-info-500;
89
- }
90
- @utility nui-checkbox-success {
91
- @apply text-success-500 dark:text-success-500;
92
- }
93
- @utility nui-checkbox-warning {
94
- @apply text-warning-500 dark:text-warning-500;
95
- }
96
- @utility nui-checkbox-danger {
97
- @apply text-danger-500 dark:text-danger-500;
98
- }
@@ -1,5 +0,0 @@
1
- /* @utility nui-dropdown-divider */
2
-
3
- @utility nui-dropdown-divider {
4
- @apply my-2 block h-px w-full border-t border-muted-200 dark:border-muted-700;
5
- }
@@ -1,61 +0,0 @@
1
- /* @utility nui-dropdown-item */
2
-
3
- @utility nui-dropdown-item {
4
- @apply nui-focus flex w-full items-center justify-start gap-2 px-3 py-2 cursor-pointer;
5
- @apply text-start font-sans text-sm;
6
- @apply transition-colors duration-300;
7
-
8
- &:not(.nui-active) {
9
- @apply text-muted-500 dark:text-muted-500;
10
- }
11
- }
12
- @utility nui-dropdown-item-content {
13
- @apply grow;
14
- }
15
- @utility nui-dropdown-item-disabled {
16
- @apply opacity-50 pointer-events-none;
17
- }
18
- @utility nui-dropdown-item-default {
19
- @apply hover:bg-muted-100 dark:hover:bg-muted-700;
20
-
21
- &.nui-active {
22
- @apply bg-muted-100 dark:bg-muted-700;
23
- }
24
- }
25
- @utility nui-dropdown-item-contrast {
26
- @apply hover:bg-muted-100 dark:hover:bg-muted-900;
27
-
28
- &.nui-active {
29
- @apply bg-muted-100 dark:bg-muted-900;
30
- }
31
- }
32
- @utility nui-dropdown-item-primary {
33
- @apply hover:text-primary-500 dark:hover:text-primary-500;
34
- }
35
- @utility nui-dropdown-item-info {
36
- @apply hover:text-info-500 dark:hover:text-info-500;
37
- }
38
- @utility nui-dropdown-item-success {
39
- @apply hover:text-success-500 dark:hover:text-success-500;
40
- }
41
- @utility nui-dropdown-item-warning {
42
- @apply hover:text-info-500 dark:hover:text-info-500;
43
- }
44
- @utility nui-dropdown-item-danger {
45
- @apply hover:text-info-500 dark:hover:text-info-500;
46
- }
47
- @utility nui-dropdown-item-dark {
48
- @apply hover:text-muted-900 dark:hover:text-muted-100;
49
- }
50
- @utility nui-dropdown-item-black {
51
- @apply hover:text-black dark:hover:text-white;
52
- }
53
- @utility nui-dropdown-item-rounded-sm {
54
- @apply rounded-md;
55
- }
56
- @utility nui-dropdown-item-rounded-md {
57
- @apply rounded-lg;
58
- }
59
- @utility nui-dropdown-item-rounded-lg {
60
- @apply rounded-xl;
61
- }
@@ -1,101 +0,0 @@
1
- /* @utility nui-dropdown */
2
-
3
- @utility nui-dropdown {
4
- @apply text-start;
5
-
6
- &:hover {
7
- .nui-dropdown-context-button {
8
- @apply ring-offset-4 ring-muted-200 dark:ring-muted-700;
9
- }
10
- }
11
- }
12
- @utility nui-dropdown-menu {
13
- @apply absolute z-50 mt-2 focus:outline-none;
14
- @apply shadow-lg shadow-muted-300/30 dark:shadow-muted-800/20;
15
- }
16
- @utility nui-dropdown-menu {
17
- @apply relative inline-block;
18
- }
19
- @utility nui-dropdown-menu-content {
20
- @apply p-2;
21
- }
22
- @utility nui-dropdown-context-button {
23
- @apply inline-flex items-center justify-center rounded-full;
24
- @apply h-9 w-9;
25
- @apply ring-1 ring-transparent ring-offset-white dark:ring-offset-muted-900;
26
- @apply transition-all duration-300;
27
-
28
- .nui-dropdown-context-button-inner {
29
- @apply flex items-center justify-center rounded-full;
30
- @apply h-9 w-9;
31
- @apply bg-white dark:bg-muted-800;
32
- @apply border border-muted-200 dark:border-muted-700;
33
- }
34
-
35
- .nui-dropdown-context-icon {
36
- @apply h-5 w-5;
37
- @apply text-muted-400 dark:text-muted-400;
38
- @apply transition-all duration-300;
39
- }
40
- }
41
- @utility nui-dropdown-text-button {
42
- @apply flex items-center space-x-1;
43
- }
44
- @utility nui-dropdown-chevron {
45
- @apply h-4 w-4;
46
- @apply transition-transform duration-300;
47
- }
48
- @utility nui-dropdown-start {
49
- .nui-dropdown-menu {
50
- @apply start-0 origin-top-left;
51
- }
52
- }
53
- @utility nui-dropdown-end {
54
- .nui-dropdown-menu {
55
- @apply end-0 origin-top-right;
56
- }
57
- }
58
- @utility nui-dropdown-menu-header {
59
- @apply px-4 pt-5;
60
- }
61
- @utility nui-dropdown-menu-header-inner {
62
- @apply relative flex items-center justify-between;
63
- }
64
- @utility nui-dropdown-menu-header-title {
65
- @apply font-sans font-medium text-xs uppercase;
66
- @apply text-muted-500 dark:text-muted-200;
67
- }
68
- @utility nui-dropdown-menu-content {
69
- @apply p-2 space-y-1;
70
- }
71
- @utility nui-dropdown-menu-md {
72
- @apply w-56;
73
- }
74
- @utility nui-dropdown-menu-lg {
75
- @apply w-72;
76
- }
77
- @utility nui-dropdown-menu-rounded-sm {
78
- @apply rounded-md;
79
- }
80
- @utility nui-dropdown-menu-rounded-md {
81
- @apply rounded-lg;
82
- }
83
- @utility nui-dropdown-menu-rounded-lg {
84
- @apply rounded-xl;
85
- }
86
- @utility nui-dropdown-menu-default {
87
- @apply border border-muted-200 dark:border-muted-700;
88
- @apply bg-white dark:bg-muted-800;
89
- }
90
- @utility nui-dropdown-menu-default-contrast {
91
- @apply border border-muted-200 dark:border-muted-800;
92
- @apply bg-white dark:bg-muted-950;
93
- }
94
- @utility nui-dropdown-menu-muted {
95
- @apply border border-muted-200 dark:border-muted-700;
96
- @apply bg-white dark:bg-muted-800;
97
- }
98
- @utility nui-dropdown-menu-muted-contrast {
99
- @apply border border-muted-200 dark:border-muted-800;
100
- @apply bg-white dark:bg-muted-950;
101
- }
@@ -1,62 +0,0 @@
1
- /* @utility nui-fullscreen-dropfile */
2
-
3
- @utility nui-fullscreen-dropfile {
4
- @apply block;
5
- }
6
- @utility nui-fullscreen-dropfile-outer {
7
- @apply bg-muted-100/50 dark:bg-muted-800/20 fixed inset-0 z-40 backdrop-blur-xs transition-all hover:backdrop-blur-none;
8
- }
9
- @utility nui-fullscreen-dropfile-inner {
10
- @apply fixed inset-0 z-50;
11
-
12
- .nui-fullscreen-dropfile-container {
13
- @apply flex h-full flex-1 items-center justify-center;
14
-
15
- .nui-fullscreen-dropfile-content {
16
- @apply h-[230px] w-[500px] mx-auto flex flex-col items-center justify-center gap-6 drop-shadow-xs;
17
- @apply bg-muted-100 dark:bg-muted-800;
18
- @apply rounded-md border-2 border-dashed border-muted-200 dark:border-muted-700;
19
-
20
- .nui-fullscreen-dropfile-icon {
21
- @apply h-10 w-10;
22
- }
23
-
24
- .nui-fullscreen-dropfile-label {
25
- @apply text-base text-muted-500 dark:text-muted-400;
26
- }
27
- }
28
- }
29
- }
30
- @utility nui-dropfile-primary {
31
- .nui-fullscreen-dropfile-inner {
32
- .nui-fullscreen-dropfile-container {
33
- .nui-fullscreen-dropfile-content {
34
- .nui-fullscreen-dropfile-icon {
35
- @apply text-primary-500 dark:text-primary-500;
36
- }
37
- }
38
- }
39
- }
40
- }
41
- @utility nui-dropfile-dark {
42
- .nui-fullscreen-dropfile-inner {
43
- .nui-fullscreen-dropfile-container {
44
- .nui-fullscreen-dropfile-content {
45
- .nui-fullscreen-dropfile-icon {
46
- @apply text-muted-900 dark:text-muted-100;
47
- }
48
- }
49
- }
50
- }
51
- }
52
- @utility nui-dropfile-black {
53
- .nui-fullscreen-dropfile-inner {
54
- .nui-fullscreen-dropfile-container {
55
- .nui-fullscreen-dropfile-content {
56
- .nui-fullscreen-dropfile-icon {
57
- @apply text-black dark:text-white;
58
- }
59
- }
60
- }
61
- }
62
- }
@@ -1,77 +0,0 @@
1
- /* @utility nui-heading */
2
-
3
- @utility nui-heading {
4
- @apply font-sans;
5
- }
6
- @utility nui-heading-xs {
7
- @apply text-xs;
8
- }
9
- @utility nui-heading-sm {
10
- @apply text-sm;
11
- }
12
- @utility nui-heading-md {
13
- @apply text-base;
14
- }
15
- @utility nui-heading-lg {
16
- @apply text-lg;
17
- }
18
- @utility nui-heading-xl {
19
- @apply text-xl;
20
- }
21
- @utility nui-heading-2xl {
22
- @apply text-2xl;
23
- }
24
- @utility nui-heading-3xl {
25
- @apply text-3xl;
26
- }
27
- @utility nui-heading-4xl {
28
- @apply text-4xl;
29
- }
30
- @utility nui-heading-5xl {
31
- @apply text-5xl;
32
- }
33
- @utility nui-heading-6xl {
34
- @apply text-6xl;
35
- }
36
- @utility nui-heading-7xl {
37
- @apply text-7xl;
38
- }
39
- @utility nui-heading-8xl {
40
- @apply text-8xl;
41
- }
42
- @utility nui-heading-9xl {
43
- @apply text-9xl;
44
- }
45
- @utility nui-heading-weight-light {
46
- @apply font-light;
47
- }
48
- @utility nui-heading-weight-normal {
49
- @apply font-normal;
50
- }
51
- @utility nui-heading-weight-medium {
52
- @apply font-medium;
53
- }
54
- @utility nui-heading-weight-semibold {
55
- @apply font-semibold;
56
- }
57
- @utility nui-heading-weight-bold {
58
- @apply font-bold;
59
- }
60
- @utility nui-heading-weight-extrabold {
61
- @apply font-extrabold;
62
- }
63
- @utility nui-heading-lead-none {
64
- @apply leading-none;
65
- }
66
- @utility nui-heading-lead-normal {
67
- @apply leading-normal;
68
- }
69
- @utility nui-heading-lead-tight {
70
- @apply leading-tight;
71
- }
72
- @utility nui-heading-lead-snug {
73
- @apply leading-snug;
74
- }
75
- @utility nui-heading-lead-loose {
76
- @apply leading-loose;
77
- }
@@ -1,304 +0,0 @@
1
- /* @utility nui-icon-box */
2
-
3
- @utility nui-icon-box {
4
- @apply relative inline-flex shrink-0 items-center justify-center;
5
-
6
- &.nui-icon-box-mask:not(.nui-icon-box-rounded-sm):not(.nui-icon-box-rounded-lg):not(.nui-icon-box-rounded-full):not(.nui-icon-box-outline):not(.nui-icon-box-bordered) {
7
- @apply nui-mask;
8
- }
9
- }
10
- @utility nui-icon-box-xs {
11
- @apply h-8 w-8;
12
-
13
- &.nui-icon-box-rounded-sm {
14
- @apply rounded-sm;
15
- }
16
-
17
- &.nui-icon-box-rounded-md {
18
- @apply rounded-md;
19
- }
20
-
21
- &.nui-icon-box-rounded-lg {
22
- @apply rounded-lg;
23
- }
24
- }
25
- @utility nui-icon-box-sm {
26
- @apply h-10 w-10;
27
-
28
- &.nui-icon-box-rounded-sm {
29
- @apply rounded-sm;
30
- }
31
-
32
- &.nui-icon-box-rounded-md {
33
- @apply rounded-md;
34
- }
35
-
36
- &.nui-icon-box-rounded-lg {
37
- @apply rounded-xl;
38
- }
39
- }
40
- @utility nui-icon-box-md {
41
- @apply h-12 w-12;
42
-
43
- &.nui-icon-box-rounded-sm {
44
- @apply rounded-md;
45
- }
46
-
47
- &.nui-icon-box-rounded-md {
48
- @apply rounded-lg;
49
- }
50
-
51
- &.nui-icon-box-rounded-lg {
52
- @apply rounded-xl;
53
- }
54
- }
55
- @utility nui-icon-box-lg {
56
- @apply h-16 w-16;
57
-
58
- &.nui-icon-box-rounded-sm {
59
- @apply rounded-md;
60
- }
61
-
62
- &.nui-icon-box-rounded-md {
63
- @apply rounded-lg;
64
- }
65
-
66
- &.nui-icon-box-rounded-lg {
67
- @apply rounded-2xl;
68
- }
69
- }
70
- @utility nui-icon-box-xl {
71
- @apply h-20 w-20;
72
-
73
- &.nui-icon-box-rounded-sm {
74
- @apply rounded-lg;
75
- }
76
-
77
- &.nui-icon-box-rounded-md {
78
- @apply rounded-xl;
79
- }
80
-
81
- &.nui-icon-box-rounded-lg {
82
- @apply rounded-2xl;
83
- }
84
- }
85
- @utility nui-icon-box-2xl {
86
- @apply h-24 w-24;
87
-
88
- &.nui-icon-box-rounded-sm {
89
- @apply rounded-lg;
90
- }
91
-
92
- &.nui-icon-box-rounded-md {
93
- @apply rounded-xl;
94
- }
95
-
96
- &.nui-icon-box-rounded-lg {
97
- @apply rounded-3xl;
98
- }
99
- }
100
- @utility nui-icon-box-rounded-full {
101
- @apply rounded-full;
102
- }
103
- @utility nui-icon-box-default {
104
- @apply text-muted-600 dark:text-muted-200;
105
- @apply bg-muted-100 dark:bg-muted-700;
106
- }
107
- @utility nui-icon-box-solid {
108
- &.nui-icon-box-default {
109
- @apply text-muted-600 dark:text-muted-200;
110
- @apply bg-muted-100 dark:bg-muted-700;
111
- }
112
-
113
- &.nui-icon-box-default-contrast {
114
- @apply text-muted-600 dark:text-muted-100;
115
- @apply bg-muted-100 dark:bg-muted-950;
116
- }
117
-
118
- &.nui-icon-box-muted {
119
- @apply text-muted-700 dark:text-muted-200;
120
- @apply bg-muted-200 dark:bg-muted-700;
121
- }
122
-
123
- &.nui-icon-box-muted-contrast {
124
- @apply text-muted-700 dark:text-muted-100;
125
- @apply bg-muted-200 dark:bg-muted-950;
126
- }
127
-
128
- &.nui-icon-box-light {
129
- @apply text-muted-800 dark:text-muted-100;
130
- @apply bg-white dark:bg-muted-700;
131
- }
132
-
133
- &.nui-icon-box-dark {
134
- @apply text-muted-100 dark:text-muted-900;
135
- @apply bg-muted-900 dark:bg-muted-100;
136
- }
137
-
138
- &.nui-icon-box-black {
139
- @apply text-white dark:text-black;
140
- @apply bg-black dark:bg-white;
141
- }
142
-
143
- &.nui-icon-box-primary {
144
- @apply text-primary-invert dark:text-primary-invert;
145
- @apply bg-primary-500 dark:bg-primary-500;
146
- }
147
-
148
- &.nui-icon-box-info {
149
- @apply text-white dark:text-white;
150
- @apply bg-info-500 dark:bg-info-500;
151
- }
152
-
153
- &.nui-icon-box-success {
154
- @apply text-white dark:text-white;
155
- @apply bg-success-500 dark:bg-success-500;
156
- }
157
-
158
- &.nui-icon-box-warning {
159
- @apply text-white dark:text-white;
160
- @apply bg-warning-500 dark:bg-warning-500;
161
- }
162
-
163
- &.nui-icon-box-danger {
164
- @apply text-white dark:text-white;
165
- @apply bg-danger-500 dark:bg-danger-500;
166
- }
167
- }
168
- @utility nui-icon-box-pastel {
169
- &.nui-icon-box-default {
170
- @apply text-muted-500 dark:text-muted-200;
171
- @apply bg-muted-500/10 dark:bg-muted-700/10;
172
- }
173
-
174
- &.nui-icon-box-default-contrast {
175
- @apply text-muted-500 dark:text-muted-100;
176
- @apply bg-muted-500/10 dark:bg-muted-950/10;
177
- }
178
-
179
- &.nui-icon-box-muted {
180
- @apply text-muted-700 dark:text-muted-200;
181
- @apply bg-muted-600/10 dark:bg-muted-700/10;
182
- }
183
-
184
- &.nui-icon-box-muted-contrast {
185
- @apply text-muted-700 dark:text-muted-100;
186
- @apply bg-muted-600/10 dark:bg-muted-950/10;
187
- }
188
-
189
- &.nui-icon-box-light {
190
- @apply text-muted-800 dark:text-muted-300;
191
- @apply bg-white/10 dark:bg-white/10;
192
- }
193
-
194
- &.nui-icon-box-dark {
195
- @apply text-muted-800 dark:text-muted-100;
196
- @apply bg-muted-900/10 dark:bg-muted-100/10;
197
- }
198
-
199
- &.nui-icon-box-black {
200
- @apply text-black dark:text-white;
201
- @apply bg-black/10 dark:bg-white/10;
202
- }
203
-
204
- &.nui-icon-box-primary {
205
- @apply text-primary-500 dark:text-primary-500;
206
- @apply bg-primary-500/10 dark:bg-primary-500/10;
207
- }
208
-
209
- &.nui-icon-box-info {
210
- @apply text-info-500 dark:text-info-500;
211
- @apply bg-info-500/10 dark:bg-info-500/10;
212
- }
213
-
214
- &.nui-icon-box-success {
215
- @apply text-success-500 dark:text-success-500;
216
- @apply bg-success-500/10 dark:bg-success-500/10;
217
- }
218
-
219
- &.nui-icon-box-warning {
220
- @apply text-warning-500 dark:text-warning-500;
221
- @apply bg-warning-500/10 dark:bg-warning-500/10;
222
- }
223
-
224
- &.nui-icon-box-danger {
225
- @apply text-danger-500 dark:text-danger-500;
226
- @apply bg-danger-500/10 dark:bg-danger-500/10;
227
- }
228
- }
229
- @utility nui-icon-box-outline {
230
- &.nui-icon-box-default {
231
- @apply text-muted-500 dark:text-muted-200;
232
- @apply bg-transparent bg-transparent;
233
- @apply border-2 border-current dark:border-current;
234
- }
235
-
236
- &.nui-icon-box-default-contrast {
237
- @apply text-muted-500 dark:text-muted-100;
238
- @apply bg-transparent bg-transparent;
239
- @apply border-2 border-current dark:border-current;
240
- }
241
-
242
- &.nui-icon-box-muted {
243
- @apply text-muted-700 dark:text-muted-200;
244
- @apply bg-transparent bg-transparent;
245
- @apply border-2 border-current dark:border-current;
246
- }
247
-
248
- &.nui-icon-box-muted-contrast {
249
- @apply text-muted-700 dark:text-muted-100;
250
- @apply bg-transparent bg-transparent;
251
- @apply border-2 border-current dark:border-current;
252
- }
253
-
254
- &.nui-icon-box-light {
255
- @apply text-muted-800 dark:text-muted-400;
256
- @apply bg-transparent bg-transparent;
257
- @apply border-2 border-current dark:border-current;
258
- }
259
-
260
- &.nui-icon-box-dark {
261
- @apply text-muted-800 dark:text-muted-100;
262
- @apply bg-transparent bg-transparent;
263
- @apply border-2 border-current dark:border-current;
264
- }
265
-
266
- &.nui-icon-box-black {
267
- @apply text-black dark:text-white;
268
- @apply bg-transparent bg-transparent;
269
- @apply border-2 border-current dark:border-current;
270
- }
271
-
272
- &.nui-icon-box-primary {
273
- @apply text-primary-500 dark:text-primary-500;
274
- @apply bg-transparent bg-transparent;
275
- @apply border-2 border-current dark:border-current;
276
- }
277
-
278
- &.nui-icon-box-info {
279
- @apply text-info-500 dark:text-info-500;
280
- @apply bg-transparent bg-transparent;
281
- @apply border-2 border-current dark:border-current;
282
- }
283
-
284
- &.nui-icon-box-success {
285
- @apply text-success-500 dark:text-success-500;
286
- @apply bg-transparent bg-transparent;
287
- @apply border-2 border-current dark:border-current;
288
- }
289
-
290
- &.nui-icon-box-warning {
291
- @apply text-warning-500 dark:text-warning-500;
292
- @apply bg-transparent bg-transparent;
293
- @apply border-2 border-current dark:border-current;
294
- }
295
-
296
- &.nui-icon-box-danger {
297
- @apply text-danger-500 dark:text-danger-500;
298
- @apply bg-transparent bg-transparent;
299
- @apply border-2 border-current dark:border-current;
300
- }
301
- }
302
- @utility nui-icon-box-bordered {
303
- @apply border-2 border-current;
304
- }