반응형
src/plugins/vuetify.ts
import Vue from 'vue';
import Vuetify from 'vuetify/lib';
import 'material-design-icons-iconfont/dist/material-design-icons.css';
import colors from 'vuetify/lib/util/colors';
Vue.use(Vuetify);
export default new Vuetify({
theme: {
themes: {
light: {
RED: '#fc3d5d',
BLUE: '#348ed8',
},
},
},
});
vuetify 설정파일에 theme.themes.light 밑에 '사용할 이름': '색상' 으로 선언해주면 색상을 네이밍으로 편하게 사용 할 수 있다.
example
<div class="RED--text">테스트</div>
반응형
'개발이야기 > Vuetify' 카테고리의 다른 글
[Vuetify] 데이터 테이블 헤더 show/hide (2) | 2021.06.12 |
---|---|
[Vuetify] 메뉴 만들기 (With Vuex) (0) | 2020.07.13 |
[Vuetify] DatePicker + TimePicker (0) | 2020.07.13 |
[Vuetify] Data table 무한뎁스 처리 (0) | 2020.02.13 |
[Vuetify] 다중 업로드 모달창 만들기 (0) | 2020.01.18 |