StyleHomeControlSystem4.qml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**
  2. * Copyright © 2010 Digia Plc
  3. * Copyright © 2010 Nokia Corporation
  4. *
  5. * All rights reserved.
  6. *
  7. * Nokia and Nokia Connecting People are registered trademarks of
  8. * Nokia Corporation.
  9. * Java and all Java-based marks are trademarks or registered
  10. * trademarks of
  11. * Sun Microsystems, Inc. Other product and company names
  12. * mentioned herein may be
  13. * trademarks or trade names of their respective owners.
  14. *
  15. *
  16. * Subject to the conditions below, you may, without charge:
  17. *
  18. * · Use, copy, modify and/or merge copies of this software and
  19. * associated documentation files (the "Software")
  20. *
  21. * · Publish, distribute, sub-licence and/or sell new software
  22. * derived from or incorporating the Software.
  23. *
  24. *
  25. * This file, unmodified, shall be included with all copies or
  26. * substantial portions
  27. * of the Software that are distributed in source code form.
  28. *
  29. * The Software cannot constitute the primary value of any new
  30. * software derived
  31. * from or incorporating the Software.
  32. *
  33. * Any person dealing with the Software shall not misrepresent
  34. * the source of the Software.
  35. *
  36. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  37. * KIND, EXPRESS OR IMPLIED,
  38. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  39. * MERCHANTABILITY, FITNESS FOR A
  40. * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  41. * AUTHORS OR COPYRIGHT
  42. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  43. * WHETHER IN AN ACTION
  44. * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  45. * CONNECTION WITH THE
  46. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  47. */
  48. import Qt 4.7
  49. import "../../colibri"
  50. import "../../colibri/gradients"
  51. CLStyle {
  52. SystemPalette { id: palette; colorGroup: SystemPalette.Active }
  53. id: systemCLStyle
  54. colorWhenActive: "#00A6FF"
  55. colorWhenDefault: "#FFFFFF"
  56. colorWhenPressed: palette.window
  57. colorWhenHovered: "#79D2FF"
  58. colorWhenSelected: "#2F9CD5"
  59. textColor: "#095277"
  60. roundness: 0.00001// 0-1
  61. fontSize: 12
  62. fontFamily: "Helvetica"
  63. fontWeight: "DemiBold"
  64. borderWidth: 1
  65. borderColor: "#6dc4f1"
  66. borderColorWhenHovered: "#0088C3"
  67. borderColorWhenPressed: palette.highlight
  68. borderColorWhenSelected: palette.highlight
  69. borderWidthInner: 1
  70. borderColorInner: "#2F9CD5"
  71. borderColorInnerWhenHovered: "#0088C3"
  72. borderColorInnerWhenPressed: palette.highlight
  73. bgColor: "#D2F0FF"
  74. itemRoundness: 0.00001
  75. selectionColor: "#6BCBFF"
  76. selectedTextColor: "white"
  77. gradientActiveOn: false
  78. gradientDefaultOn: false
  79. gradientHoveredOn: false
  80. gradientPressedOn: false
  81. gradientBgOn: false
  82. gradientCheckedOn: false
  83. gradientSelectedOn: false
  84. activeStateOn: true
  85. hoveredStateOn: true
  86. pressedStateOn: true
  87. borderColorWhenChecked: "#3f3b3c"
  88. colorWhenChecked: "#3f3b3c"
  89. borderColorWhenActive: palette.highlight
  90. gradientBg: Gradient {
  91. GradientStop { position: 0; color: "#E3F6FF" }
  92. GradientStop { position: 1; color: "#C4EAFD" }
  93. }
  94. gradientWhenDefault: Gradient {
  95. GradientStop { position: 0; color: "#FFFFFF" }
  96. GradientStop { position: 1; color: "#79D2FF" }
  97. }
  98. gradientWhenHovered: Gradient {
  99. GradientStop { position: 0; color: "#FFFFFF" }
  100. GradientStop { position: 1; color: "#D9D9D9" }
  101. }
  102. gradientWhenPressed: Gradient {
  103. GradientStop { position: 0; color: "#FFFFFF" }
  104. GradientStop { position: 1; color: "#D9D9D9" }
  105. }
  106. gradientWhenSelected: LightBlue {}
  107. gradientWhenChecked: gradientWhenDefault
  108. gradientWhenActive: Gradient {
  109. GradientStop { position: 0; color: "#79D2FF" }
  110. GradientStop { position: 1; color: "#FFFFFF" }
  111. }
  112. }