mirror of
https://github.com/wagtail/wagtail.git
synced 2024-12-01 11:41:20 +01:00
629ced01ca
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
104 lines
2.4 KiB
JavaScript
104 lines
2.4 KiB
JavaScript
const plugin = require('tailwindcss/plugin');
|
||
const vanillaRTL = require('tailwindcss-vanilla-rtl');
|
||
/**
|
||
* Design Tokens
|
||
*/
|
||
const colors = require('./src/tokens/colors');
|
||
const {
|
||
fontFamily,
|
||
fontSize,
|
||
fontWeight,
|
||
letterSpacing,
|
||
lineHeight,
|
||
} = require('./src/tokens/typography');
|
||
const { breakpoints } = require('./src/tokens/breakpoints');
|
||
const {
|
||
borderRadius,
|
||
borderWidth,
|
||
boxShadow,
|
||
} = require('./src/tokens/objectStyles');
|
||
const { spacing } = require('./src/tokens/spacing');
|
||
|
||
/**
|
||
* Plugins
|
||
*/
|
||
const typeScale = require('./src/tokens/typeScale');
|
||
const scrollbarThin = require('./src/plugins/scrollbarThin');
|
||
|
||
/**
|
||
* Functions
|
||
* themeColors: For converting our design tokens into a format that tailwind accepts
|
||
*/
|
||
const themeColors = Object.fromEntries(
|
||
Object.entries(colors).map(([key, hues]) => {
|
||
const shades = Object.fromEntries(
|
||
Object.entries(hues).map(([k, shade]) => [k, shade.hex]),
|
||
);
|
||
return [key, shades];
|
||
}),
|
||
);
|
||
|
||
/**
|
||
* Root Tailwind config, reusable for other projects.
|
||
*/
|
||
module.exports = {
|
||
prefix: 'w-',
|
||
theme: {
|
||
screens: {
|
||
...breakpoints,
|
||
},
|
||
colors: {
|
||
...themeColors,
|
||
inherit: 'inherit',
|
||
current: 'currentColor',
|
||
transparent: 'transparent',
|
||
/* allow system colours https://www.w3.org/TR/css-color-4/#css-system-colors */
|
||
LinkText: 'LinkText',
|
||
ButtonText: 'ButtonText',
|
||
},
|
||
fontFamily,
|
||
fontSize,
|
||
fontWeight,
|
||
lineHeight,
|
||
letterSpacing,
|
||
borderRadius,
|
||
borderWidth,
|
||
boxShadow: {
|
||
...boxShadow,
|
||
none: 'none',
|
||
},
|
||
spacing,
|
||
extend: {
|
||
opacity: {
|
||
15: '0.15',
|
||
85: '0.85',
|
||
},
|
||
outlineOffset: {
|
||
inside: '-3px',
|
||
},
|
||
},
|
||
},
|
||
plugins: [
|
||
typeScale,
|
||
vanillaRTL,
|
||
scrollbarThin,
|
||
/**
|
||
* forced-colors media query for Windows High-Contrast mode support
|
||
* See:
|
||
* - https://developer.mozilla.org/en-US/docs/Web/CSS/@media/forced-colors
|
||
* - https://github.com/tailwindlabs/tailwindcss/blob/v3.0.23/src/corePlugins.js#L168-L171
|
||
*/
|
||
plugin(({ addVariant }) => {
|
||
addVariant('forced-colors', '@media (forced-colors: active)');
|
||
}),
|
||
],
|
||
corePlugins: {
|
||
...vanillaRTL.disabledCorePlugins,
|
||
// Disable float and clear which have poor RTL support.
|
||
float: false,
|
||
clear: false,
|
||
// Disable text-transform so we don’t rely on uppercasing text.
|
||
textTransform: false,
|
||
},
|
||
};
|