0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Vuetify, Vue】カスタムカラー、文字の色を変更したい

Posted at

vuetifyでカスタムしたカラーを、標準の色と同様にclass=で呼びたい時の設定方法

// vuetify.js
export default createVuetify({
  theme:{
    defaultTheme:'myCustomTheme', //こいつが案外重要
    themes:{
        myCustomTheme:{
            colors:{
                logoCyan:'#00aae3', // これで class="text-logoCyan"で呼べる
                logoGreen:'#80af26',
            },
        },
    },
  },
})

カスタムカラーを設定すると、色に合わせて自動で文字色が決まります。
大体はいい感じに設定してくれますが、たまに見づらい色になることも…
(緑背景に黒文字って見づらくないですか??)

変更したい場合はこちらもカスタムカラーに設定ができます。

// vuetify.js
export default createVuetify({
  theme:{
    defaultTheme:'myCustomTheme',
    themes:{
        myCustomTheme:{
            colors:{
                logoCyan:'#00aae3',
                logoGreen:'#80af26',
                'on-logoGreen': '#fff' // これで文字色が白になる!
            },
        },
    },
  },
})

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?