1- 'use strict' ;
2-
31import colors from './colors' ;
42import screens from './screens' ;
53import fonts from './fonts' ;
64import textSizes from './text-sizes' ;
75import fontWeights from './font-weights' ;
86import leading from './line-height' ;
97import tracking from './letter-spacing' ;
8+ import textColors from './text-colors' ;
9+ import backgroundColors from './background-colors' ;
10+ import backgroundSize from './background-size' ;
1011import borderWidths from './border-widths' ;
12+ import borderColors from './border-colors' ;
1113import borderRadius from './border-radius' ;
1214import width from './width' ;
1315import height from './height' ;
@@ -33,10 +35,11 @@ export default {
3335 fontWeights,
3436 leading,
3537 tracking,
36- textColors : colors ,
37- backgroundColors : colors ,
38+ textColors,
39+ backgroundColors,
40+ backgroundSize,
3841 borderWidths,
39- borderColors : Object . assign ( { default : colors [ 'grey-light' ] } , colors ) ,
42+ borderColors,
4043 borderRadius,
4144 width,
4245 height,
@@ -101,6 +104,22 @@ export default {
101104 zIndex : [ 'responsive' ] ,
102105 } ,
103106
107+ /*
108+ |-----------------------------------------------------------------------------
109+ | Plugins https://tailwindcss.com/docs/plugins
110+ |-----------------------------------------------------------------------------
111+ |
112+ | Here is where you can register any plugins you'd like to use in your
113+ | project. Tailwind's built-in `container` plugin is enabled by default to
114+ | give you a Bootstrap-style responsive container component out of the box.
115+ |
116+ | Be sure to view the complete plugin documentation to learn more about how
117+ | the plugin system works.
118+ |
119+ */
120+ plugins : [
121+ ] ,
122+
104123 /*
105124 |-----------------------------------------------------------------------------
106125 | Advanced Options https://tailwindcss.com/docs/configuration#options
0 commit comments