You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_variables.scss 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /**
  2. * Style variables
  3. */
  4. $baseFontFamily: 'open_sanslight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  5. $toolbarFontSize: 1.9em;
  6. $hangupFontSize: 2em;
  7. /**
  8. * Size variables.
  9. */
  10. $defaultToolbarSize: 50px;
  11. // Video layout.
  12. $thumbnailToolbarHeight: 22px;
  13. $thumbnailIndicatorBorder: 0px;
  14. $thumbnailIndicatorSize: $thumbnailToolbarHeight;
  15. $thumbnailVideoMargin: 2px;
  16. /**
  17. * Color variables.
  18. */
  19. $defaultColor: #F1F1F1;
  20. $defaultSideBarFontColor: #44A5FF;
  21. $defaultSemiDarkColor: #ACACAC;
  22. $defaultDarkColor: #2b3d5c;
  23. $defaultBackground: #474747;
  24. $tooltipBg: rgba(0,0,0, 0.7);
  25. // Toolbar
  26. $toolbarBackground: rgba(0, 0, 0, 0.5);
  27. $toolbarSelectBackground: rgba(0, 0, 0, .6);
  28. $toolbarBadgeBackground: #165ECC;
  29. $toolbarBadgeColor: #FFFFFF;
  30. $toolbarToggleBackground: #12499C;
  31. $splitterToolbarButtonLeftMargin: 0px;
  32. // Main controls
  33. $inputSemiBackground: rgba(132, 132, 132, .8);
  34. $inputLightBackground: #EBEBEB;
  35. // Video layout.
  36. $videoThumbnailHovered: #BFEBFF;
  37. $videoThumbnailSelected: #165ECC;
  38. $participantNameColor: #fff;
  39. $thumbnailPictogramColor: #fff;
  40. $dominantSpeakerBg: #165ecc;
  41. $raiseHandBg: #D6D61E;
  42. $audioLevelBg: #44A5FF;
  43. $connectionIndicatorBg: #48CC8C;
  44. $audioLevelShadow: rgba(9, 36, 77, 0.9);
  45. $videoStateIndicatorColor: $defaultColor;
  46. $videoStateIndicatorBackground: $toolbarBackground;
  47. /**
  48. * Feedback Modal
  49. */
  50. $feedbackContentBg: #fff;
  51. $feedbackInputBg: #fff;
  52. $feedbackTextColor: #000;
  53. $feedbackInputTextColor: #333;
  54. $feedbackInputPlaceholderColor: #777;
  55. $rateStarLabelColor: #333;
  56. $rateStarDefault: #ccc;
  57. $rateStarActivity: #165ecc;
  58. $rateStarSize: 34px;
  59. $feedbackCancelFontColor: #333;
  60. // Notifications
  61. $notificationFontSize: 13px;
  62. $notificationColor: #FFFFFF;
  63. $notificationBackground: $tooltipBg;
  64. $notificationTitleColor: $notificationColor;
  65. $notificationMessageColor: $notificationColor;
  66. $notificationLinkColor: $notificationColor;
  67. $notificationOpacity: 0.9;
  68. $notificationPadding: 15px 20px;
  69. $notificationBorderRadius: 4px;
  70. /**
  71. * Misc.
  72. */
  73. $borderRadius: 4px;
  74. $defaultWatermarkLink: '../images/watermark.png';
  75. $sidebarWidth: 200px;
  76. /**
  77. * Z-indexes. TODO: Replace this by a function.
  78. */
  79. $tooltipsZ: 901;
  80. $toolbarZ: 900;
  81. $overlayZ: 902;
  82. $notificationZ: 1012;
  83. $ringingZ: 800;
  84. /**
  85. * Font Colors TODO: Change colors when general dialogs are implemented.
  86. */
  87. $defaultFontColor: #777;
  88. $defaultLightFontColor: #F1F1F1;
  89. $defaultDarkFontColor: #000;
  90. $buttonFontColor: #777;
  91. $buttonHoverFontColor: #287ade;
  92. $auiPrimaryButtonBg: #3572b0;
  93. $auiPrimaryButtonHoverBg: #57647b;
  94. $auiPrimaryButtonColor: #fff;
  95. $auiIconColor: #707070;
  96. $inputControlEmColor: #f29424;
  97. $linkFontColor: #489afe;
  98. $linkHoverFontColor: #287ade;
  99. /**
  100. * Forms
  101. */
  102. $inputBg: $inputSemiBackground;
  103. $inputBgHover: $inputSemiBackground;
  104. $inputFontColor: $defaultDarkFontColor;