color.uvue 644 B

123456789101112131415161718192021
  1. <template>
  2. <view style="flex-grow: 1;">
  3. <view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
  4. <text class="common" style="color: rgb(255, 0, 0);">color: rgb(255, 0, 0)</text>
  5. <text class="common" style="color: rgba(255, 0, 0, 0.5);">color: rgba(255, 0, 0, 0.5)</text>
  6. <text class="common" style="color: #ff0000;">color: #ff0000</text>
  7. <text class="common" style="color: #f00;">color: #f00</text>
  8. <text class="common" style="color: red;">color: red</text>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. </script>
  14. <style>
  15. .common {
  16. font-size: 20px;
  17. }
  18. </style>