diff --git a/examples/with-tailwindcss-emotion/.babelrc b/examples/with-tailwindcss-emotion/.babelrc
index fe1be8b87d7e9..d952dc7b6e5e3 100644
--- a/examples/with-tailwindcss-emotion/.babelrc
+++ b/examples/with-tailwindcss-emotion/.babelrc
@@ -1,4 +1,9 @@
{
- "presets": ["next/babel"],
- "plugins": [["emotion"], ["macros"]]
-}
+ "presets": [
+ "next/babel"
+ ],
+ "plugins": [
+ "macros",
+ "@emotion/babel-plugin"
+ ]
+}
\ No newline at end of file
diff --git a/examples/with-tailwindcss-emotion/README.md b/examples/with-tailwindcss-emotion/README.md
index 5d5e6ac49e1c4..796cec8b50e40 100644
--- a/examples/with-tailwindcss-emotion/README.md
+++ b/examples/with-tailwindcss-emotion/README.md
@@ -1,6 +1,8 @@
# Tailwind CSS with Emotion.js example
-This is an example of how you can add the tailwind CSS with Emotion.js in your web app.
+This is an example of how you can add [tailwind CSS](https://tailwindcss.com/) with [Emotion.js](https://emotion.sh/docs/introduction) in your web app. It takes inspiration from [examples/with-tailwindcss](https://github.com/zeit/next.js/blob/canary/examples/with-tailwindcss/README.md).
+
+`@tailwindcssinjs/macro` is used to add tailwind classes inside Emotion by injecting the tailwind CSS into the styled component. No need to use CSS files, autoprefix, minifier, etc. You will get the full benefits of Emotion.
## Deploy your own
@@ -43,10 +45,6 @@ Deploy it to the cloud with [Vercel](https://vercel.com/import?filter=next.js&ut
## Notes
-This setup has inspiration from [examples/with-tailwindcss](https://github.com/zeit/next.js/blob/canary/examples/with-tailwindcss/README.md). This example will show you how to integrate [Emotion](https://emotion.sh/docs/introduction) with [tailwind](https://tailwindcss.com/).
-
-`tailwindcss.macros` is used to add tailwind classes inside Emotion by injecting the tailwind CSS into the styled component. No need to use CSS files, autoprefix, minifier, etc. You will get the full benefits of Emotion.
-
The CSS classes generated by Emotion will include the tailwind styles but not the name of the classes. For example the following component:
```jsx
@@ -65,3 +63,13 @@ Will be transformed into:
color: #2d3748;
}
```
+
+### tailwind CSS config
+
+Use the following command when you add a tailwind plugin that adds to tailwind's base css:
+
+```bash
+npm run build:base-css
+# or
+yarn run build:base-css
+```
diff --git a/examples/with-tailwindcss-emotion/babel-plugin-macros.config.js b/examples/with-tailwindcss-emotion/babel-plugin-macros.config.js
deleted file mode 100644
index 24671e6d4311b..0000000000000
--- a/examples/with-tailwindcss-emotion/babel-plugin-macros.config.js
+++ /dev/null
@@ -1,5 +0,0 @@
-module.exports = {
- tailwind: {
- styled: '@emotion/styled',
- },
-}
diff --git a/examples/with-tailwindcss-emotion/components/ButtonCss.js b/examples/with-tailwindcss-emotion/components/ButtonCss.js
new file mode 100644
index 0000000000000..68f8ddf7d3b12
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/components/ButtonCss.js
@@ -0,0 +1,60 @@
+/*
+ Example with @emotion/css
+
+ Note: configure "extractCritical" from "@emotion/server" in _document.js.
+
+ Required packages for this component:
+ "@emotion/css"
+ "@emotion/babel-plugin"
+ "@emotion/server"
+
+ These packages can be removed if you plan on only using @emotion/css API:
+ "@emotion/react"
+ "@emotion/styled"
+*/
+
+import { css, cx } from '@emotion/css'
+import tw from '@tailwindcssinjs/macro'
+
+//"react native style"
+const styles = {
+ button: css(tw`
+ relative
+ w-64 min-w-full
+ flex justify-center
+ py-2 px-4
+ border border-transparent
+ text-sm leading-5 font-medium
+ rounded-md
+ text-white
+ bg-gray-600
+ hover:bg-gray-500
+ focus[outline-none border-gray-700 shadow-outline-gray]
+ active:bg-gray-700
+ transition duration-150 ease-in-out
+ `),
+}
+
+const ButtonCss = ({ className, children, ...props }) => (
+
+)
+
+export default ButtonCss
diff --git a/examples/with-tailwindcss-emotion/components/ButtonReact.js b/examples/with-tailwindcss-emotion/components/ButtonReact.js
new file mode 100644
index 0000000000000..bc8676d6a9d10
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/components/ButtonReact.js
@@ -0,0 +1,61 @@
+/*
+ Example with @emotion/react
+
+ Required packages for this component:
+ "@emotion/react"
+ "@emotion/babel-plugin"
+
+ These packages can be removed if you plan on only using @emotion/react API:
+ "@emotion/css"
+ "@emotion/styled"
+ "@emotion/server"
+*/
+
+/** @jsx jsx */
+import { jsx } from '@emotion/react'
+import tw from '@tailwindcssinjs/macro'
+
+//"react native style"
+const styles = {
+ button: tw`
+ relative
+ w-64 min-w-full
+ flex justify-center
+ py-2 px-4
+ border border-transparent
+ text-sm leading-5 font-medium
+ rounded-md
+ text-white
+ bg-teal-600
+ hover:bg-teal-500
+ focus[outline-none border-teal-700 shadow-outline-teal]
+ active:bg-teal-700
+ transition duration-150 ease-in-out
+ `,
+}
+
+const ButtonReact = ({ className, children, ...props }) => (
+
+)
+
+export default ButtonReact
diff --git a/examples/with-tailwindcss-emotion/components/ButtonStyled.js b/examples/with-tailwindcss-emotion/components/ButtonStyled.js
new file mode 100644
index 0000000000000..bf7ee608a594f
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/components/ButtonStyled.js
@@ -0,0 +1,61 @@
+/*
+ Example with @emotion/styled
+
+ Required packages for this component:
+ "@emotion/react"
+ "@emotion/styled"
+ "@emotion/babel-plugin"
+
+ These packages can be removed if you plan on only using @emotion/styled API:
+ "@emotion/css"
+ "@emotion/server"
+*/
+
+import styled from '@emotion/styled'
+import tw from '@tailwindcssinjs/macro'
+
+const Button = styled.button(tw`
+ relative
+ w-64 min-w-full
+ flex justify-center
+ py-2 px-4
+ border border-transparent
+ text-sm leading-5 font-medium
+ rounded-md
+ text-white
+ bg-indigo-600
+ hover:bg-indigo-500
+ focus[outline-none border-indigo-700 shadow-outline-indigo]
+ active:bg-indigo-700
+ transition duration-150 ease-in-out
+`)
+
+const IconWrapper = styled.span(tw`
+ absolute left-0 inset-y-0
+ flex items-center
+ pl-3
+`)
+
+const Icon = styled.svg(tw`
+ h-5 w-5
+ text-indigo-500
+ group-hover:text-indigo-400
+ transition ease-in-out duration-150
+`)
+
+const ButtonStyled = ({ className, children, ...props }) => (
+
+)
+
+export default ButtonStyled
diff --git a/examples/with-tailwindcss-emotion/next.config.js b/examples/with-tailwindcss-emotion/next.config.js
deleted file mode 100644
index cb3db96b23bb8..0000000000000
--- a/examples/with-tailwindcss-emotion/next.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-module.exports = {
- webpack: (config, options) => {
- // Fixes npm packages that depend on `fs` module
- config.node = {
- fs: 'empty',
- }
-
- return config
- },
-}
diff --git a/examples/with-tailwindcss-emotion/package.json b/examples/with-tailwindcss-emotion/package.json
index 3cec1eaa08b39..40bfdc65e128d 100644
--- a/examples/with-tailwindcss-emotion/package.json
+++ b/examples/with-tailwindcss-emotion/package.json
@@ -1,23 +1,27 @@
{
"name": "with-tailwindcss-emotion",
- "version": "0.1.0",
- "private": true,
+ "version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
- "start": "next start"
+ "start": "next start",
+ "build:base-css": "tailwindcss build ./styles/tailwind.base.css -o ./styles/base.css"
},
"dependencies": {
- "@emotion/core": "10.0.17",
- "@emotion/styled": "10.0.17",
+ "@emotion/css": "^11.0.0-next.12",
+ "@emotion/react": "^11.0.0-next.12",
+ "@emotion/styled": "^11.0.0-next.12",
"next": "latest",
- "react": "16.10.1",
- "react-dom": "16.10.1"
+ "react": "16.13.1",
+ "react-dom": "16.13.1"
},
"devDependencies": {
- "babel-plugin-emotion": "10.0.19",
- "babel-plugin-macros": "2.6.1",
- "tailwind.macro": "1.0.0-alpha.10",
- "tailwindcss": "1.1.2"
+ "@babel/core": "^7.9.0",
+ "@emotion/babel-plugin": "^11.0.0-next.12",
+ "@emotion/server": "^11.0.0-next.12",
+ "@tailwindcss/ui": "^0.2.2",
+ "@tailwindcssinjs/macro": "^0.3.1",
+ "babel-plugin-macros": "2.8.0",
+ "tailwindcss": "1.3.5"
}
}
diff --git a/examples/with-tailwindcss-emotion/pages/_app.js b/examples/with-tailwindcss-emotion/pages/_app.js
new file mode 100644
index 0000000000000..6f6765667716c
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/pages/_app.js
@@ -0,0 +1,13 @@
+import Head from 'next/head'
+import '../styles/base.css'
+
+export default function MyApp({ Component, pageProps }) {
+ return (
+ <>
+
+ Tailwindcss Emotion Example
+
+
+ >
+ )
+}
diff --git a/examples/with-tailwindcss-emotion/pages/_document.js b/examples/with-tailwindcss-emotion/pages/_document.js
new file mode 100644
index 0000000000000..511c57db911cc
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/pages/_document.js
@@ -0,0 +1,35 @@
+// _document is only rendered on the server side and not on the client side
+// Event handlers like onClick can't be added to this file
+
+// ./pages/_document.js
+import Document, { Html, Head, Main, NextScript } from 'next/document'
+
+// Required for @emotion/css
+import { extractCritical } from '@emotion/server'
+
+export default class MyDocument extends Document {
+ static async getInitialProps(ctx) {
+ const initialProps = await Document.getInitialProps(ctx)
+ const page = ctx.renderPage()
+ const styles = extractCritical(page.html)
+ return { ...initialProps, ...page, ...styles }
+ }
+
+ render() {
+ return (
+
+
+
+
+
+
+
+
+
+
+ )
+ }
+}
diff --git a/examples/with-tailwindcss-emotion/pages/index.js b/examples/with-tailwindcss-emotion/pages/index.js
index 5d94333e740f6..b03c7f0cd7898 100644
--- a/examples/with-tailwindcss-emotion/pages/index.js
+++ b/examples/with-tailwindcss-emotion/pages/index.js
@@ -1,38 +1,15 @@
-import React from 'react'
-import { css } from '@emotion/core'
-import styled from '@emotion/styled'
-import tw from 'tailwind.macro'
-
-/**
- * We can use macros in `styled`.
- */
-const Header = styled.div`
- ${tw`font-mono text-sm text-gray-800 hover:text-red-500`}
- transition: .150s ease-in-out;
-`
-
-const Button = styled.button`
- ${tw`bg-blue-500 text-white font-mono px-4 py-2 rounded`} :hover {
- ${tw`bg-blue-700`}
- }
-`
-
-/**
- * Also, we can use `css`.
- */
-const CardStyle = css`
- ${tw`p-4 border-solid border border-gray-300 rounded p-4 shadow-xl`}
-`
-
-const Card = styled.div`
- ${CardStyle}
-`
-
-const Example = () => (
-
-
-
-
+import { css } from '@emotion/css'
+import tw from '@tailwindcssinjs/macro'
+import ButtonCss from '../components/ButtonCss'
+import ButtonReact from '../components/ButtonReact'
+import ButtonStyled from '../components/ButtonStyled'
+
+const Index = () => (
+
+ @emotion/css
+ @emotion/react
+ @emotion/styled
+
)
-export default Example
+export default Index
diff --git a/examples/with-tailwindcss-emotion/styles/base.css b/examples/with-tailwindcss-emotion/styles/base.css
new file mode 100644
index 0000000000000..db3ac19346bad
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/styles/base.css
@@ -0,0 +1,605 @@
+/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
+
+/* Document
+ ========================================================================== */
+
+/**
+ * 1. Correct the line height in all browsers.
+ * 2. Prevent adjustments of font size after orientation changes in iOS.
+ */
+
+html {
+ line-height: 1.15; /* 1 */
+ -webkit-text-size-adjust: 100%; /* 2 */
+}
+
+/* Sections
+ ========================================================================== */
+
+/**
+ * Remove the margin in all browsers.
+ */
+
+body {
+ margin: 0;
+}
+
+/**
+ * Render the `main` element consistently in IE.
+ */
+
+main {
+ display: block;
+}
+
+/**
+ * Correct the font size and margin on `h1` elements within `section` and
+ * `article` contexts in Chrome, Firefox, and Safari.
+ */
+
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+
+/* Grouping content
+ ========================================================================== */
+
+/**
+ * 1. Add the correct box sizing in Firefox.
+ * 2. Show the overflow in Edge and IE.
+ */
+
+hr {
+ box-sizing: content-box; /* 1 */
+ height: 0; /* 1 */
+ overflow: visible; /* 2 */
+}
+
+/**
+ * 1. Correct the inheritance and scaling of font size in all browsers.
+ * 2. Correct the odd `em` font sizing in all browsers.
+ */
+
+pre {
+ font-family: monospace, monospace; /* 1 */
+ font-size: 1em; /* 2 */
+}
+
+/* Text-level semantics
+ ========================================================================== */
+
+/**
+ * Remove the gray background on active links in IE 10.
+ */
+
+a {
+ background-color: transparent;
+}
+
+/**
+ * 1. Remove the bottom border in Chrome 57-
+ * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
+ */
+
+abbr[title] {
+ border-bottom: none; /* 1 */
+ text-decoration: underline; /* 2 */
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted; /* 2 */
+}
+
+/**
+ * Add the correct font weight in Chrome, Edge, and Safari.
+ */
+
+b,
+strong {
+ font-weight: bolder;
+}
+
+/**
+ * 1. Correct the inheritance and scaling of font size in all browsers.
+ * 2. Correct the odd `em` font sizing in all browsers.
+ */
+
+code,
+kbd,
+samp {
+ font-family: monospace, monospace; /* 1 */
+ font-size: 1em; /* 2 */
+}
+
+/**
+ * Add the correct font size in all browsers.
+ */
+
+small {
+ font-size: 80%;
+}
+
+/**
+ * Prevent `sub` and `sup` elements from affecting the line height in
+ * all browsers.
+ */
+
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+sup {
+ top: -0.5em;
+}
+
+/* Embedded content
+ ========================================================================== */
+
+/**
+ * Remove the border on images inside links in IE 10.
+ */
+
+img {
+ border-style: none;
+}
+
+/* Forms
+ ========================================================================== */
+
+/**
+ * 1. Change the font styles in all browsers.
+ * 2. Remove the margin in Firefox and Safari.
+ */
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ font-family: inherit; /* 1 */
+ font-size: 100%; /* 1 */
+ line-height: 1.15; /* 1 */
+ margin: 0; /* 2 */
+}
+
+/**
+ * Show the overflow in IE.
+ * 1. Show the overflow in Edge.
+ */
+
+button,
+input {
+ /* 1 */
+ overflow: visible;
+}
+
+/**
+ * Remove the inheritance of text transform in Edge, Firefox, and IE.
+ * 1. Remove the inheritance of text transform in Firefox.
+ */
+
+button,
+select {
+ /* 1 */
+ text-transform: none;
+}
+
+/**
+ * Correct the inability to style clickable types in iOS and Safari.
+ */
+
+button,
+[type='button'],
+[type='reset'],
+[type='submit'] {
+ -webkit-appearance: button;
+}
+
+/**
+ * Remove the inner border and padding in Firefox.
+ */
+
+button::-moz-focus-inner,
+[type='button']::-moz-focus-inner,
+[type='reset']::-moz-focus-inner,
+[type='submit']::-moz-focus-inner {
+ border-style: none;
+ padding: 0;
+}
+
+/**
+ * Restore the focus styles unset by the previous rule.
+ */
+
+button:-moz-focusring,
+[type='button']:-moz-focusring,
+[type='reset']:-moz-focusring,
+[type='submit']:-moz-focusring {
+ outline: 1px dotted ButtonText;
+}
+
+/**
+ * Correct the padding in Firefox.
+ */
+
+fieldset {
+ padding: 0.35em 0.75em 0.625em;
+}
+
+/**
+ * 1. Correct the text wrapping in Edge and IE.
+ * 2. Correct the color inheritance from `fieldset` elements in IE.
+ * 3. Remove the padding so developers are not caught out when they zero out
+ * `fieldset` elements in all browsers.
+ */
+
+legend {
+ box-sizing: border-box; /* 1 */
+ color: inherit; /* 2 */
+ display: table; /* 1 */
+ max-width: 100%; /* 1 */
+ padding: 0; /* 3 */
+ white-space: normal; /* 1 */
+}
+
+/**
+ * Add the correct vertical alignment in Chrome, Firefox, and Opera.
+ */
+
+progress {
+ vertical-align: baseline;
+}
+
+/**
+ * Remove the default vertical scrollbar in IE 10+.
+ */
+
+textarea {
+ overflow: auto;
+}
+
+/**
+ * 1. Add the correct box sizing in IE 10.
+ * 2. Remove the padding in IE 10.
+ */
+
+[type='checkbox'],
+[type='radio'] {
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * Correct the cursor style of increment and decrement buttons in Chrome.
+ */
+
+[type='number']::-webkit-inner-spin-button,
+[type='number']::-webkit-outer-spin-button {
+ height: auto;
+}
+
+/**
+ * 1. Correct the odd appearance in Chrome and Safari.
+ * 2. Correct the outline style in Safari.
+ */
+
+[type='search'] {
+ -webkit-appearance: textfield; /* 1 */
+ outline-offset: -2px; /* 2 */
+}
+
+/**
+ * Remove the inner padding in Chrome and Safari on macOS.
+ */
+
+[type='search']::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+/**
+ * 1. Correct the inability to style clickable types in iOS and Safari.
+ * 2. Change font properties to `inherit` in Safari.
+ */
+
+::-webkit-file-upload-button {
+ -webkit-appearance: button; /* 1 */
+ font: inherit; /* 2 */
+}
+
+/* Interactive
+ ========================================================================== */
+
+/*
+ * Add the correct display in Edge, IE 10+, and Firefox.
+ */
+
+details {
+ display: block;
+}
+
+/*
+ * Add the correct display in all browsers.
+ */
+
+summary {
+ display: list-item;
+}
+
+/* Misc
+ ========================================================================== */
+
+/**
+ * Add the correct display in IE 10+.
+ */
+
+template {
+ display: none;
+}
+
+/**
+ * Add the correct display in IE 10.
+ */
+
+[hidden] {
+ display: none;
+}
+
+/**
+ * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
+ * A thin layer on top of normalize.css that provides a starting point more
+ * suitable for web applications.
+ */
+
+/**
+ * Removes the default spacing and border for appropriate elements.
+ */
+
+blockquote,
+dl,
+dd,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+hr,
+figure,
+p,
+pre {
+ margin: 0;
+}
+
+button {
+ background-color: transparent;
+ background-image: none;
+ padding: 0;
+}
+
+/**
+ * Work around a Firefox/IE bug where the transparent `button` background
+ * results in a loss of the default `button` focus styles.
+ */
+
+button:focus {
+ outline: 1px dotted;
+ outline: 5px auto -webkit-focus-ring-color;
+}
+
+fieldset {
+ margin: 0;
+ padding: 0;
+}
+
+ol,
+ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+/**
+ * Tailwind custom reset styles
+ */
+
+/**
+ * 1. Use the user's configured `sans` font-family (with Tailwind's default
+ * sans-serif font stack as a fallback) as a sane default.
+ * 2. Use Tailwind's default "normal" line-height so the user isn't forced
+ * to override it to ensure consistency even when using the default theme.
+ */
+
+html {
+ font-family: Inter var, system-ui, -apple-system, BlinkMacSystemFont,
+ 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif,
+ 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; /* 1 */
+ line-height: 1.5; /* 2 */
+}
+
+/**
+ * 1. Prevent padding and border from affecting element width.
+ *
+ * We used to set this in the html element and inherit from
+ * the parent element for everything else. This caused issues
+ * in shadow-dom-enhanced elements like where the content
+ * is wrapped by a div with box-sizing set to `content-box`.
+ *
+ * https://github.com/mozdevs/cssremedy/issues/4
+ *
+ *
+ * 2. Allow adding a border to an element by just adding a border-width.
+ *
+ * By default, the way the browser specifies that an element should have no
+ * border is by setting it's border-style to `none` in the user-agent
+ * stylesheet.
+ *
+ * In order to easily add borders to elements by just setting the `border-width`
+ * property, we change the default border-style for all elements to `solid`, and
+ * use border-width to hide them instead. This way our `border` utilities only
+ * need to set the `border-width` property instead of the entire `border`
+ * shorthand, making our border utilities much more straightforward to compose.
+ *
+ * https://github.com/tailwindcss/tailwindcss/pull/116
+ */
+
+*,
+::before,
+::after {
+ box-sizing: border-box; /* 1 */
+ border-width: 0; /* 2 */
+ border-style: solid; /* 2 */
+ border-color: #d2d6dc; /* 2 */
+}
+
+/*
+ * Ensure horizontal rules are visible by default
+ */
+
+hr {
+ border-top-width: 1px;
+}
+
+/**
+ * Undo the `border-style: none` reset that Normalize applies to images so that
+ * our `border-{width}` utilities have the expected effect.
+ *
+ * The Normalize reset is unnecessary for us since we default the border-width
+ * to 0 on all elements.
+ *
+ * https://github.com/tailwindcss/tailwindcss/issues/362
+ */
+
+img {
+ border-style: solid;
+}
+
+textarea {
+ resize: vertical;
+}
+
+input::-webkit-input-placeholder,
+textarea::-webkit-input-placeholder {
+ color: #a0aec0;
+}
+
+input::-moz-placeholder,
+textarea::-moz-placeholder {
+ color: #a0aec0;
+}
+
+input:-ms-input-placeholder,
+textarea:-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+input::-ms-input-placeholder,
+textarea::-ms-input-placeholder {
+ color: #a0aec0;
+}
+
+input::placeholder,
+textarea::placeholder {
+ color: #a0aec0;
+}
+
+button,
+[role='button'] {
+ cursor: pointer;
+}
+
+table {
+ border-collapse: collapse;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-size: inherit;
+ font-weight: inherit;
+}
+
+/**
+ * Reset links to optimize for opt-in styling instead of
+ * opt-out.
+ */
+
+a {
+ color: inherit;
+ text-decoration: inherit;
+}
+
+/**
+ * Reset form element properties that are easy to forget to
+ * style explicitly so you don't inadvertently introduce
+ * styles that deviate from your design system. These styles
+ * supplement a partial reset that is already applied by
+ * normalize.css.
+ */
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ padding: 0;
+ line-height: inherit;
+ color: inherit;
+}
+
+/**
+ * Use the configured 'mono' font family for elements that
+ * are expected to be rendered with a monospace font, falling
+ * back to the system monospace stack if there is no configured
+ * 'mono' font family.
+ */
+
+pre,
+code,
+kbd,
+samp {
+ font-family: Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
+ monospace;
+}
+
+/**
+ * Make replaced elements `display: block` by default as that's
+ * the behavior you want almost all of the time. Inspired by
+ * CSS Remedy, with `svg` added as well.
+ *
+ * https://github.com/mozdevs/cssremedy/issues/14
+ */
+
+img,
+svg,
+video,
+canvas,
+audio,
+iframe,
+embed,
+object {
+ display: block;
+ vertical-align: middle;
+}
+
+/**
+ * Constrain images and videos to the parent width and preserve
+ * their instrinsic aspect ratio.
+ *
+ * https://github.com/mozdevs/cssremedy/issues/14
+ */
+
+img,
+video {
+ max-width: 100%;
+ height: auto;
+}
diff --git a/examples/with-tailwindcss-emotion/styles/tailwind.base.css b/examples/with-tailwindcss-emotion/styles/tailwind.base.css
new file mode 100644
index 0000000000000..2f02db53f6e3a
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/styles/tailwind.base.css
@@ -0,0 +1 @@
+@tailwind base;
diff --git a/examples/with-tailwindcss-emotion/tailwind.config.js b/examples/with-tailwindcss-emotion/tailwind.config.js
new file mode 100644
index 0000000000000..a2950ff2e671d
--- /dev/null
+++ b/examples/with-tailwindcss-emotion/tailwind.config.js
@@ -0,0 +1,13 @@
+const defaultTheme = require('tailwindcss/defaultTheme')
+
+module.exports = {
+ theme: {
+ extend: {
+ fontFamily: {
+ sans: ['Inter var', ...defaultTheme.fontFamily.sans],
+ },
+ },
+ },
+ variants: {},
+ plugins: [require('@tailwindcss/ui')],
+}
diff --git a/examples/with-tailwindcss-emotion/tailwind.js b/examples/with-tailwindcss-emotion/tailwind.js
deleted file mode 100644
index 21904ef9d0146..0000000000000
--- a/examples/with-tailwindcss-emotion/tailwind.js
+++ /dev/null
@@ -1,490 +0,0 @@
-/**
- * default config from https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
- * we also use `tailwind.js` because the default of `babel-plugin-macros` set this file as a tailwind default config.
- */
-module.exports = {
- prefix: '',
- important: false,
- separator: ':',
- theme: {
- colors: {
- transparent: 'transparent',
-
- black: '#000',
- white: '#fff',
-
- gray: {
- 100: '#f7fafc',
- 200: '#edf2f7',
- 300: '#e2e8f0',
- 400: '#cbd5e0',
- 500: '#a0aec0',
- 600: '#718096',
- 700: '#4a5568',
- 800: '#2d3748',
- 900: '#1a202c',
- },
- red: {
- 100: '#fff5f5',
- 200: '#fed7d7',
- 300: '#feb2b2',
- 400: '#fc8181',
- 500: '#f56565',
- 600: '#e53e3e',
- 700: '#c53030',
- 800: '#9b2c2c',
- 900: '#742a2a',
- },
- orange: {
- 100: '#fffaf0',
- 200: '#feebc8',
- 300: '#fbd38d',
- 400: '#f6ad55',
- 500: '#ed8936',
- 600: '#dd6b20',
- 700: '#c05621',
- 800: '#9c4221',
- 900: '#7b341e',
- },
- yellow: {
- 100: '#fffff0',
- 200: '#fefcbf',
- 300: '#faf089',
- 400: '#f6e05e',
- 500: '#ecc94b',
- 600: '#d69e2e',
- 700: '#b7791f',
- 800: '#975a16',
- 900: '#744210',
- },
- green: {
- 100: '#f0fff4',
- 200: '#c6f6d5',
- 300: '#9ae6b4',
- 400: '#68d391',
- 500: '#48bb78',
- 600: '#38a169',
- 700: '#2f855a',
- 800: '#276749',
- 900: '#22543d',
- },
- teal: {
- 100: '#e6fffa',
- 200: '#b2f5ea',
- 300: '#81e6d9',
- 400: '#4fd1c5',
- 500: '#38b2ac',
- 600: '#319795',
- 700: '#2c7a7b',
- 800: '#285e61',
- 900: '#234e52',
- },
- blue: {
- 100: '#ebf8ff',
- 200: '#bee3f8',
- 300: '#90cdf4',
- 400: '#63b3ed',
- 500: '#4299e1',
- 600: '#3182ce',
- 700: '#2b6cb0',
- 800: '#2c5282',
- 900: '#2a4365',
- },
- indigo: {
- 100: '#ebf4ff',
- 200: '#c3dafe',
- 300: '#a3bffa',
- 400: '#7f9cf5',
- 500: '#667eea',
- 600: '#5a67d8',
- 700: '#4c51bf',
- 800: '#434190',
- 900: '#3c366b',
- },
- purple: {
- 100: '#faf5ff',
- 200: '#e9d8fd',
- 300: '#d6bcfa',
- 400: '#b794f4',
- 500: '#9f7aea',
- 600: '#805ad5',
- 700: '#6b46c1',
- 800: '#553c9a',
- 900: '#44337a',
- },
- pink: {
- 100: '#fff5f7',
- 200: '#fed7e2',
- 300: '#fbb6ce',
- 400: '#f687b3',
- 500: '#ed64a6',
- 600: '#d53f8c',
- 700: '#b83280',
- 800: '#97266d',
- 900: '#702459',
- },
- },
- spacing: {
- px: '1px',
- 0: '0',
- 1: '0.25rem',
- 2: '0.5rem',
- 3: '0.75rem',
- 4: '1rem',
- 5: '1.25rem',
- 6: '1.5rem',
- 8: '2rem',
- 10: '2.5rem',
- 12: '3rem',
- 16: '4rem',
- 20: '5rem',
- 24: '6rem',
- 32: '8rem',
- 40: '10rem',
- 48: '12rem',
- 56: '14rem',
- 64: '16rem',
- },
- screens: {
- sm: '640px',
- md: '768px',
- lg: '1024px',
- xl: '1280px',
- },
- fontFamily: {
- sans: [
- '-apple-system',
- 'BlinkMacSystemFont',
- '"Segoe UI"',
- 'Roboto',
- '"Helvetica Neue"',
- 'Arial',
- '"Noto Sans"',
- 'sans-serif',
- '"Apple Color Emoji"',
- '"Segoe UI Emoji"',
- '"Segoe UI Symbol"',
- '"Noto Color Emoji"',
- ],
- serif: ['Georgia', 'Cambria', '"Times New Roman"', 'Times', 'serif'],
- mono: [
- 'Menlo',
- 'Monaco',
- 'Consolas',
- '"Liberation Mono"',
- '"Courier New"',
- 'monospace',
- ],
- },
- fontSize: {
- xs: '0.75rem',
- sm: '0.875rem',
- base: '1rem',
- lg: '1.125rem',
- xl: '1.25rem',
- '2xl': '1.5rem',
- '3xl': '1.875rem',
- '4xl': '2.25rem',
- '5xl': '3rem',
- '6xl': '4rem',
- },
- fontWeight: {
- hairline: '100',
- thin: '200',
- light: '300',
- normal: '400',
- medium: '500',
- semibold: '600',
- bold: '700',
- extrabold: '800',
- black: '900',
- },
- lineHeight: {
- none: '1',
- tight: '1.25',
- snug: '1.375',
- normal: '1.5',
- relaxed: '1.625',
- loose: '2',
- },
- letterSpacing: {
- tighter: '-0.05em',
- tight: '-0.025em',
- normal: '0',
- wide: '0.025em',
- wider: '0.05em',
- widest: '0.1em',
- },
- textColor: theme => theme('colors'),
- backgroundColor: theme => theme('colors'),
- backgroundPosition: {
- bottom: 'bottom',
- center: 'center',
- left: 'left',
- 'left-bottom': 'left bottom',
- 'left-top': 'left top',
- right: 'right',
- 'right-bottom': 'right bottom',
- 'right-top': 'right top',
- top: 'top',
- },
- backgroundSize: {
- auto: 'auto',
- cover: 'cover',
- contain: 'contain',
- },
- borderWidth: {
- default: '1px',
- 0: '0',
- 2: '2px',
- 4: '4px',
- 8: '8px',
- },
- borderColor: theme => ({
- ...theme('colors'),
- default: theme('colors.gray.300', 'currentColor'),
- }),
- borderRadius: {
- none: '0',
- sm: '0.125rem',
- default: '0.25rem',
- lg: '0.5rem',
- full: '9999px',
- },
- cursor: {
- auto: 'auto',
- default: 'default',
- pointer: 'pointer',
- wait: 'wait',
- text: 'text',
- move: 'move',
- 'not-allowed': 'not-allowed',
- },
- width: theme => ({
- auto: 'auto',
- ...theme('spacing'),
- '1/2': '50%',
- '1/3': '33.33333%',
- '2/3': '66.66667%',
- '1/4': '25%',
- '2/4': '50%',
- '3/4': '75%',
- '1/5': '20%',
- '2/5': '40%',
- '3/5': '60%',
- '4/5': '80%',
- '1/6': '16.66667%',
- '2/6': '33.33333%',
- '3/6': '50%',
- '4/6': '66.66667%',
- '5/6': '83.33333%',
- '1/12': '8.33333%',
- '2/12': '16.66667%',
- '3/12': '25%',
- '4/12': '33.33333%',
- '5/12': '41.66667%',
- '6/12': '50%',
- '7/12': '58.33333%',
- '8/12': '66.66667%',
- '9/12': '75%',
- '10/12': '83.33333%',
- '11/12': '91.66667%',
- full: '100%',
- screen: '100vw',
- }),
- height: theme => ({
- auto: 'auto',
- ...theme('spacing'),
- full: '100%',
- screen: '100vh',
- }),
- minWidth: {
- 0: '0',
- full: '100%',
- },
- minHeight: {
- 0: '0',
- full: '100%',
- screen: '100vh',
- },
- maxWidth: {
- xs: '20rem',
- sm: '24rem',
- md: '28rem',
- lg: '32rem',
- xl: '36rem',
- '2xl': '42rem',
- '3xl': '48rem',
- '4xl': '56rem',
- '5xl': '64rem',
- '6xl': '72rem',
- full: '100%',
- },
- maxHeight: {
- full: '100%',
- screen: '100vh',
- },
- padding: theme => theme('spacing'),
- margin: (theme, { negative }) => ({
- auto: 'auto',
- ...theme('spacing'),
- ...negative(theme('spacing')),
- }),
- objectPosition: {
- bottom: 'bottom',
- center: 'center',
- left: 'left',
- 'left-bottom': 'left bottom',
- 'left-top': 'left top',
- right: 'right',
- 'right-bottom': 'right bottom',
- 'right-top': 'right top',
- top: 'top',
- },
- boxShadow: {
- default:
- '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
- md:
- '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
- lg:
- '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
- xl:
- '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
- '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)',
- inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)',
- outline: '0 0 0 3px rgba(66, 153, 225, 0.5)',
- none: 'none',
- },
- zIndex: {
- auto: 'auto',
- 0: '0',
- 10: '10',
- 20: '20',
- 30: '30',
- 40: '40',
- 50: '50',
- },
- opacity: {
- 0: '0',
- 25: '0.25',
- 50: '0.5',
- 75: '0.75',
- 100: '1',
- },
- fill: {
- current: 'currentColor',
- },
- stroke: {
- current: 'currentColor',
- },
- flex: {
- 1: '1 1 0%',
- auto: '1 1 auto',
- initial: '0 1 auto',
- none: 'none',
- },
- flexGrow: {
- 0: '0',
- default: '1',
- },
- flexShrink: {
- 0: '0',
- default: '1',
- },
- order: {
- first: '-1',
- last: '999',
- none: '0',
- 1: '1',
- 2: '2',
- 3: '3',
- 4: '4',
- 5: '5',
- 6: '6',
- 7: '7',
- 8: '8',
- 9: '9',
- 10: '10',
- 11: '11',
- 12: '12',
- },
- listStyleType: {
- none: 'none',
- disc: 'disc',
- decimal: 'decimal',
- },
- inset: {
- 0: '0',
- auto: 'auto',
- },
- container: {},
- },
- variants: {
- appearance: ['responsive'],
- backgroundAttachment: ['responsive'],
- backgroundColor: ['responsive', 'hover', 'focus'],
- backgroundPosition: ['responsive'],
- backgroundRepeat: ['responsive'],
- backgroundSize: ['responsive'],
- borderCollapse: [],
- borderColor: ['responsive', 'hover', 'focus'],
- borderRadius: ['responsive'],
- borderStyle: ['responsive'],
- borderWidth: ['responsive'],
- cursor: ['responsive'],
- display: ['responsive'],
- flexDirection: ['responsive'],
- flexWrap: ['responsive'],
- alignItems: ['responsive'],
- alignSelf: ['responsive'],
- justifyContent: ['responsive'],
- alignContent: ['responsive'],
- flex: ['responsive'],
- flexGrow: ['responsive'],
- flexShrink: ['responsive'],
- order: ['responsive'],
- float: ['responsive'],
- fontFamily: ['responsive'],
- fontWeight: ['responsive', 'hover', 'focus'],
- height: ['responsive'],
- lineHeight: ['responsive'],
- listStylePosition: ['responsive'],
- listStyleType: ['responsive'],
- margin: ['responsive'],
- maxHeight: ['responsive'],
- maxWidth: ['responsive'],
- minHeight: ['responsive'],
- minWidth: ['responsive'],
- objectFit: ['responsive'],
- objectPosition: ['responsive'],
- opacity: ['responsive'],
- outline: ['focus'],
- overflow: ['responsive'],
- padding: ['responsive'],
- pointerEvents: ['responsive'],
- position: ['responsive'],
- inset: ['responsive'],
- resize: ['responsive'],
- boxShadow: ['responsive', 'hover', 'focus'],
- fill: [],
- stroke: [],
- tableLayout: ['responsive'],
- textAlign: ['responsive'],
- textColor: ['responsive', 'hover', 'focus'],
- fontSize: ['responsive'],
- fontStyle: ['responsive'],
- textTransform: ['responsive'],
- textDecoration: ['responsive', 'hover', 'focus'],
- fontSmoothing: ['responsive'],
- letterSpacing: ['responsive'],
- userSelect: ['responsive'],
- verticalAlign: ['responsive'],
- visibility: ['responsive'],
- whitespace: ['responsive'],
- wordBreak: ['responsive'],
- width: ['responsive'],
- zIndex: ['responsive'],
- },
- corePlugins: {},
- plugins: [],
-}