今天是開發的Day3,主要任務仍是切版與熟悉Tailwind。
<style>
裡加入<lang=scss>
,使其可以撰寫SCSS。CDN
方法在app.vue
內import字型。//app.vue
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
html, body {
font-family: 'Roboto', sans-serif;
}
#app {
font-family: 'Roboto', sans-serif;
}
由於Tailwind的className自帶的顏色並不一定是設計稿顏色,故需要在配置文件tailwind.config.js
中的theme.colors部分直接添加自定義的顏色。
/** @type {import('tailwindcss').Config} */
module.exports = {
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
'white': '#ffffff',
'purple': '#3f3cbb',
'midnight': '#121063',
'metal': '#565584',
'tahiti': '#3ab7bf',
'silver': '#ecebff',
'bubble-gum': '#ff77e9',
'bermuda': '#78dcca',
},
},
}
參考文章:Customizing Colors