@@ -125,16 +125,13 @@ module.exports = {
125
125
8 : '8px' ,
126
126
} ,
127
127
boxShadow : {
128
- xs : '0 0 0 1px rgba(0, 0, 0, 0.05)' ,
129
128
sm : '0 1px 2px 0 rgba(0, 0, 0, 0.05)' ,
130
129
DEFAULT : '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)' ,
131
130
md : '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)' ,
132
131
lg : '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)' ,
133
132
xl : '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)' ,
134
133
'2xl' : '0 25px 50px -12px rgba(0, 0, 0, 0.25)' ,
135
134
inner : 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)' ,
136
- outline : '0 0 0 3px rgba(147, 197, 253, 0.5)' ,
137
- solid : '0 0 0 2px currentColor' ,
138
135
none : 'none' ,
139
136
} ,
140
137
container : { } ,
@@ -498,6 +495,7 @@ module.exports = {
498
495
} ,
499
496
opacity : {
500
497
0 : '0' ,
498
+ 5 : '0.05' ,
501
499
10 : '0.1' ,
502
500
20 : '0.2' ,
503
501
25 : '0.25' ,
@@ -509,6 +507,7 @@ module.exports = {
509
507
75 : '0.75' ,
510
508
80 : '0.8' ,
511
509
90 : '0.9' ,
510
+ 95 : '0.95' ,
512
511
100 : '1' ,
513
512
} ,
514
513
order : {
@@ -536,6 +535,30 @@ module.exports = {
536
535
padding : ( theme ) => theme ( 'spacing' ) ,
537
536
placeholderColor : ( theme ) => theme ( 'colors' ) ,
538
537
placeholderOpacity : ( theme ) => theme ( 'opacity' ) ,
538
+ ringColor : ( theme ) => ( {
539
+ DEFAULT : theme ( 'colors.blue.500' ) ,
540
+ ...theme ( 'colors' ) ,
541
+ } ) ,
542
+ ringOffsetColor : ( theme ) => theme ( 'colors' ) ,
543
+ ringOffsetWidth : {
544
+ 0 : '0' ,
545
+ 1 : '1px' ,
546
+ 2 : '2px' ,
547
+ 4 : '4px' ,
548
+ 8 : '8px' ,
549
+ } ,
550
+ ringOpacity : ( theme ) => ( {
551
+ DEFAULT : '0.5' ,
552
+ ...theme ( 'opacity' ) ,
553
+ } ) ,
554
+ ringWidth : {
555
+ DEFAULT : '3px' ,
556
+ 0 : '0' ,
557
+ 1 : '1px' ,
558
+ 2 : '2px' ,
559
+ 4 : '4px' ,
560
+ 8 : '8px' ,
561
+ } ,
539
562
rotate : {
540
563
'-180' : '-180deg' ,
541
564
'-90' : '-90deg' ,
@@ -794,6 +817,11 @@ module.exports = {
794
817
pointerEvents : [ 'responsive' ] ,
795
818
position : [ 'responsive' ] ,
796
819
resize : [ 'responsive' ] ,
820
+ ringColor : [ 'responsive' ] ,
821
+ ringOffsetColor : [ 'responsive' ] ,
822
+ ringOffsetWidth : [ 'responsive' ] ,
823
+ ringOpacity : [ 'responsive' ] ,
824
+ ringWidth : [ 'responsive' , 'focus' ] ,
797
825
rotate : [ 'responsive' , 'hover' , 'focus' ] ,
798
826
scale : [ 'responsive' , 'hover' , 'focus' ] ,
799
827
skew : [ 'responsive' , 'hover' , 'focus' ] ,
0 commit comments