Style Customization

Vuely template is developed with Scss and Vuetify so it's easy to change the styling. It uses some custom variables which provide you the more flexibility and control over design.

Changing the Default Theme

We have already covered this topic in the Themesarrow-up-right section in the side menu. Please visit that section to get detail information about changing the default theme's.

Theme Customization

When you open the src -> themes folder, you will see, different theme files there. Choose from them the file in which you want to make the desired changes. When you open one of the theme file you will find different color values defined like below:

primaryTheme.js
export default {
   primary: '#5D92F4',
   secondary: '#424242',
   accent: '#82B1FF',
   error: '#FF3739',
   info: '#00D0BD',
   success: '#00D014',
   warning: '#FFB70F'
}

You can make the changes in the color code given above as per your requirements. After all the changes, save the file and open the browser, you will see the new colors in the template.

For more info, check out the following link.

circle-info

You can find all the style variables(that are used in the given examples) inside the src -> assets -> scss -> _app.variables.scssfile.

Changing the Font Family

We are using Google Fonts in the template as it is free to use and is easily available. For more info, please visit:

Step 1: To change the font family in the template, please visit the above link and select the font you wish to apply to your template and copy the embed code & font family. Example:

Embed Code & Font Family

Paste the embed code in index.html file under the public folder.

circle-exclamation

Step 2: Now go to the src->assets->scss and open the _app.variables.scss file and paste the font family in the variable $font-family-base like:

You can easily change the width, background color, text color etc of the sidebar easily. Open the src->components->Header->Header.vue file. For modifications in the width. change the value of the width parameter in the given code:

You can change all other properties of the sidebar from the given variables. You can find these variables inside this src->assets->scss->_app.variables.scss file:

Change Text Colors

You can change the text colors using the given style variables.

Gradient Colors

If you want to use gradient colors then use these variables with basic values.

Content Block

Customise your main block settings with help of the following variables.

Change Header Styling

You can also modify the header using the variable defined below:

Main Container

To change app background color, go to _app.variables.scss file and change the following values.

Heading

With help of following variables you can easily change font sizes for all the headings ( h1 to h6 ).

Dark Theme Variable

Change the dark theme variables as per your requirement.

Last updated