Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Theme system #17

Open
g0shed opened this issue Oct 10, 2020 · 5 comments
Open

Theme system #17

g0shed opened this issue Oct 10, 2020 · 5 comments

Comments

@g0shed
Copy link

g0shed commented Oct 10, 2020

Is it possible to get some explanation on the theme system? And how to change it etc?

@mt-dev44
Copy link
Contributor

Hey, thank you for your interest in the project. Are you able to clone and run the project locally? During the install process you are able to pass in your own theme object that contains the properties needed to style it your own way.

@g0shed
Copy link
Author

g0shed commented Oct 20, 2020

Hey, thank you for your interest in the project. Are you able to clone and run the project locally? During the install process you are able to pass in your own theme object that contains the properties needed to style it your own way.

yes, I understand, but If I'm using for example just the Table component it starts complaining about not having the theme, i basically have to pass the theme-override prop every time i call a component

@mt-dev44
Copy link
Contributor

Do you have an example of how you are including it?

@g0shed
Copy link
Author

g0shed commented Oct 22, 2020

in nuxt for example, I pull a component like this:

import { Button } from '@advanced-data-machines/tailwindcss-vue';

...
components: {
    Button,
},
...

@mt-dev44
Copy link
Contributor

The best way to handle that is just install the specific component and override the theme.

import { Button } from '@advanced-data-machines/tailwindcss-vue';
const custom = {
    theme: {
        TvButton: {
            ...
        }
    }
};
Vue.use(Button, custom);

Can also install just an array of components.

import Twv, { Button } from '@advanced-data-machines/tailwindcss-vue';

const components = [Button];
const custom = {
    theme: {
        TvButton: {
            ...
        }
    },
    components
};
Vue.use(Twv, custom);

This way you handle the config once.

Let me know if you have other issues or errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants