[wip] darkmode

This commit is contained in:
syuilo
2018-04-20 07:50:49 +09:00
parent 8daa9c8062
commit b3cb9c7537
4 changed files with 32 additions and 8 deletions

View File

@ -45,7 +45,7 @@ export default Vue.extend({
</script>
<style lang="stylus" scoped>
svg
root(isDark)
display block
height 100%
@ -56,6 +56,12 @@ svg
> text
font-size 0.15px
fill rgba(0, 0, 0, 0.6)
fill isDark ? rgba(#fff, 0.6) : rgba(0, 0, 0, 0.6)
svg[data-darkmode]
root(true)
svg:not([data-darkmode])
root(false)
</style>