@@ -767,7 +767,107 @@ module.exports = {
767
767
768
768
/*
769
769
|-----------------------------------------------------------------------------
770
- | Options https://tailwindcss.com/docs/configuration#options
770
+ | SVG fill https://tailwindcss.com/docs/svg
771
+ |-----------------------------------------------------------------------------
772
+ |
773
+ | Here is where you define your SVG fill colors. By default we just provide
774
+ | `fill-current` which sets the fill to the current text color. This lets you
775
+ | specify a fill color using existing text color utilities and helps keep the
776
+ | generated CSS file size down.
777
+ |
778
+ | Class name: .fill-{name}
779
+ |
780
+ */
781
+
782
+ svgFill : {
783
+ 'current' : 'currentColor' ,
784
+ } ,
785
+
786
+
787
+ /*
788
+ |-----------------------------------------------------------------------------
789
+ | SVG stroke https://tailwindcss.com/docs/svg
790
+ |-----------------------------------------------------------------------------
791
+ |
792
+ | Here is where you define your SVG stroke colors. By default we just provide
793
+ | `stroke-current` which sets the stroke to the current text color. This lets
794
+ | you specify a stroke color using existing text color utilities and helps
795
+ | keep the generated CSS file size down.
796
+ |
797
+ | Class name: .stroke-{name}
798
+ |
799
+ */
800
+
801
+ svgStroke : {
802
+ 'current' : 'currentColor' ,
803
+ } ,
804
+
805
+
806
+ /*
807
+ |-----------------------------------------------------------------------------
808
+ | Modules https://tailwindcss.com/docs/configuration#modules
809
+ |-----------------------------------------------------------------------------
810
+ |
811
+ | Here is where you control which modules are generated and what variants are
812
+ | generated for each of those modules.
813
+ |
814
+ | Currently supported variants: 'responsive', 'hover', 'focus'
815
+ |
816
+ | To disable a module completely, use `false` instead of an array.
817
+ |
818
+ */
819
+
820
+ modules : {
821
+ appearance : [ 'responsive' ] ,
822
+ backgroundAttachment : [ 'responsive' ] ,
823
+ backgroundColors : [ 'responsive' , 'hover' ] ,
824
+ backgroundPosition : [ 'responsive' ] ,
825
+ backgroundRepeat : [ 'responsive' ] ,
826
+ backgroundSize : [ 'responsive' ] ,
827
+ borderColors : [ 'responsive' , 'hover' ] ,
828
+ borderRadius : [ 'responsive' ] ,
829
+ borderStyle : [ 'responsive' ] ,
830
+ borderWidths : [ 'responsive' ] ,
831
+ cursor : [ 'responsive' ] ,
832
+ display : [ 'responsive' ] ,
833
+ flexbox : [ 'responsive' ] ,
834
+ float : [ 'responsive' ] ,
835
+ fonts : [ 'responsive' ] ,
836
+ fontWeights : [ 'responsive' , 'hover' ] ,
837
+ height : [ 'responsive' ] ,
838
+ leading : [ 'responsive' ] ,
839
+ lists : [ 'responsive' ] ,
840
+ margin : [ 'responsive' ] ,
841
+ maxHeight : [ 'responsive' ] ,
842
+ maxWidth : [ 'responsive' ] ,
843
+ minHeight : [ 'responsive' ] ,
844
+ minWidth : [ 'responsive' ] ,
845
+ negativeMargin : [ 'responsive' ] ,
846
+ opacity : [ 'responsive' ] ,
847
+ overflow : [ 'responsive' ] ,
848
+ padding : [ 'responsive' ] ,
849
+ pointerEvents : [ 'responsive' ] ,
850
+ position : [ 'responsive' ] ,
851
+ resize : [ 'responsive' ] ,
852
+ shadows : [ 'responsive' ] ,
853
+ svgFill : [ ] ,
854
+ svgStroke : [ ] ,
855
+ textAlign : [ 'responsive' ] ,
856
+ textColors : [ 'responsive' , 'hover' ] ,
857
+ textSizes : [ 'responsive' ] ,
858
+ textStyle : [ 'responsive' , 'hover' ] ,
859
+ tracking : [ 'responsive' ] ,
860
+ userSelect : [ 'responsive' ] ,
861
+ verticalAlign : [ 'responsive' ] ,
862
+ visibility : [ 'responsive' ] ,
863
+ whitespace : [ 'responsive' ] ,
864
+ width : [ 'responsive' ] ,
865
+ zIndex : [ 'responsive' ] ,
866
+ } ,
867
+
868
+ /*
869
+ |-----------------------------------------------------------------------------
870
+ | Advanced Options https://tailwindcss.com/docs/configuration#options
771
871
|-----------------------------------------------------------------------------
772
872
|
773
873
| Here is where you can set your Tailwind configuration options. For more
@@ -778,6 +878,7 @@ module.exports = {
778
878
options : {
779
879
prefix : '' ,
780
880
important : false ,
881
+ separator : ':' ,
781
882
} ,
782
883
783
884
}
0 commit comments