Vue + Tailwind: Themeable profile page
P粉155710425
P粉155710425 2023-09-03 14:50:24
0
1
396
<p>I want to create an application (similar to a social network) that lets users sign up and enter a bunch of profile information. Thereafter, the user can select a theme (from a set of predefined themes) to display this information to other users viewing the profile. </p> <p>This is very similar to Shopify’s storefront theme. </p> <p>How should I try to design a solution for this? </p> <p>Sorry in advance for a very advanced vague question. </p> <p>I know how to set the theme and/or colors etc while writing code (or maybe during the build step), but I'm even trying to reason about how to do this inside the product. </p>
P粉155710425
P粉155710425

reply all(1)
P粉762447363

You can use tw-colors to create a predefined theme p>

   const { createThemes } = require('tw-colors');

   module.exports = {
      content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
      plugins: [
         createThemes({
            banana: { 
               'primary': 'steelblue',
               'secondary': 'darkblue',
               'brand': '#F3F3F3',
            },
            halloween: { 
               'primary': 'turquoise',
               'secondary': 'tomato',
               'brand': '#4A4A4A',
            },
            darkula: { 
               'primary': '#2A9D8F',
               'secondary': '#E9C46A',
               'brand': '#264653',
            },
         })
      ],
   };

Then apply the theme to the card container

Username

...

Username

...

If subject class names come from API responses, you should safelist them, otherwise tailwind will not generate them, see tailwind documentation for more details

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!