diff --git a/__tests__/fixtures/tailwind-output-flagged.css b/__tests__/fixtures/tailwind-output-flagged.css index 102b52da8..a47a10615 100644 --- a/__tests__/fixtures/tailwind-output-flagged.css +++ b/__tests__/fixtures/tailwind-output-flagged.css @@ -398,7 +398,7 @@ html { box-sizing: border-box; /* 1 */ border-width: 0; /* 2 */ border-style: solid; /* 2 */ - border-color: #d4d4d8; /* 2 */ + border-color: #e4e4e7; /* 2 */ } /* @@ -429,7 +429,7 @@ textarea { input::placeholder, textarea::placeholder { - color: #a0aec0; + color: #a1a1aa; } button, diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index ad4dcc6f6..faa427048 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -398,7 +398,7 @@ html { box-sizing: border-box; /* 1 */ border-width: 0; /* 2 */ border-style: solid; /* 2 */ - border-color: #d4d4d8; /* 2 */ + border-color: #e4e4e7; /* 2 */ } /* @@ -429,7 +429,7 @@ textarea { input::placeholder, textarea::placeholder { - color: #a0aec0; + color: #a1a1aa; } button, diff --git a/__tests__/fixtures/tailwind-output-no-color-opacity.css b/__tests__/fixtures/tailwind-output-no-color-opacity.css index 3dc1fcd63..8944c03fc 100644 --- a/__tests__/fixtures/tailwind-output-no-color-opacity.css +++ b/__tests__/fixtures/tailwind-output-no-color-opacity.css @@ -398,7 +398,7 @@ html { box-sizing: border-box; /* 1 */ border-width: 0; /* 2 */ border-style: solid; /* 2 */ - border-color: #d4d4d8; /* 2 */ + border-color: #e4e4e7; /* 2 */ } /* @@ -429,7 +429,7 @@ textarea { input::placeholder, textarea::placeholder { - color: #a0aec0; + color: #a1a1aa; } button, diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 102b52da8..a47a10615 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -398,7 +398,7 @@ html { box-sizing: border-box; /* 1 */ border-width: 0; /* 2 */ border-style: solid; /* 2 */ - border-color: #d4d4d8; /* 2 */ + border-color: #e4e4e7; /* 2 */ } /* @@ -429,7 +429,7 @@ textarea { input::placeholder, textarea::placeholder { - color: #a0aec0; + color: #a1a1aa; } button, diff --git a/src/plugins/css/preflight.css b/src/plugins/css/preflight.css index 9bb5e5ee7..bff5bb83a 100644 --- a/src/plugins/css/preflight.css +++ b/src/plugins/css/preflight.css @@ -130,7 +130,7 @@ textarea { input::placeholder, textarea::placeholder { - color: #a0aec0; + color: theme('colors.gray.400', #a1a1aa); } button, diff --git a/stubs/defaultConfig.stub.js b/stubs/defaultConfig.stub.js index 856338412..75bb13a87 100644 --- a/stubs/defaultConfig.stub.js +++ b/stubs/defaultConfig.stub.js @@ -95,7 +95,7 @@ module.exports = { }, borderColor: (theme) => ({ ...theme('colors'), - DEFAULT: theme('colors.gray.300', 'currentColor'), + DEFAULT: theme('colors.gray.200', 'currentColor'), }), borderOpacity: (theme) => theme('opacity'), borderRadius: {