sprintify-ui 0.6.43 → 0.6.44
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
const plugin = require('tailwindcss/plugin');
|
|
2
|
-
const theme = require('./theme')
|
|
2
|
+
const theme = require('./theme');
|
|
3
3
|
|
|
4
|
-
const button = require('./button')
|
|
5
|
-
const overlay = require('./overlay')
|
|
6
|
-
const input = require('./input')
|
|
4
|
+
const button = require('./button');
|
|
5
|
+
const overlay = require('./overlay');
|
|
6
|
+
const input = require('./input');
|
|
7
7
|
|
|
8
8
|
const config = {
|
|
9
9
|
theme: theme
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
const { parseColor } = require("tailwindcss/lib/util/color");
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
export default (theme) => {
|
|
3
|
+
module.exports = function (theme) {
|
|
5
4
|
|
|
6
5
|
const blueColor = parseColor(theme('colors.blue.600')).color.join(", ");
|
|
7
6
|
const redColor = parseColor(theme('colors.red.600')).color.join(", ");
|