Add task list demo application
This commit is contained in:
42
packages/css-configuration/index.js
Normal file
42
packages/css-configuration/index.js
Normal file
@@ -0,0 +1,42 @@
|
||||
import nesting from 'tailwindcss/nesting/index.js';
|
||||
import tailwindcss from 'tailwindcss';
|
||||
import autoprefixer from 'autoprefixer';
|
||||
|
||||
/**
|
||||
* @type import('vite').UserConfig['css']
|
||||
*/
|
||||
export const css = {
|
||||
postcss: {
|
||||
plugins: [
|
||||
tailwindcss({
|
||||
content: ['./**/*.{html,js,jsx,ts,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
container: {
|
||||
center: true,
|
||||
padding: '1rem',
|
||||
},
|
||||
colors: {
|
||||
primary: {
|
||||
50: '#f3faeb',
|
||||
100: '#e5f3d4',
|
||||
200: '#cde8ae',
|
||||
300: '#acd87e',
|
||||
400: '#8ec655',
|
||||
500: '#6ca635',
|
||||
600: '#558828',
|
||||
700: '#426823',
|
||||
800: '#375420',
|
||||
900: '#30481f',
|
||||
950: '#17270c',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}),
|
||||
nesting,
|
||||
autoprefixer,
|
||||
],
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user