2

这一定是在某个地方问过的,但找不到在哪里:(

我正在阅读如何找出某人在 html 中使用的浏览器。

我的网站使用“主题”(DevExpress'Black glass),并且想知道当用户登录时是否有办法访问 Chrome 的当前主题。

我知道这有可能成为一项艰巨的任务,但如果可能的话,有没有办法获得 chromes 主题的“css”(显然这仅适用于用户使用 chrome 的情况)?

我目前正在用 mvc 编写一个项目,但是任何 html/css 方法在这里都是有益的。

例如:

草

是否可以访问“草”主题的 css(请注意,这只是一个示例,还有许多其他主题可用)?

4

1 回答 1

1

据我所知,这是不可能的,因为它不像 CSS 那样工作。您必须获取 JSON 文件,因为我认为 CRX 不可能。

GC 主题的 JSON 文件如下所示:

{
  "version": "1.0",
  "name": "test theme",
  "description": "A test theme",
  "theme": {
    "images" : {
      "theme_frame" : "images/theme_frame_camo.png",
      "theme_toolbar" : "images/theme_toolbar_camo.png",
      "theme_ntp_background" : "images/theme_ntp_background_norepeat.png",
      "theme_ntp_attribution" : "images/attribution.png"
    },
    "colors" : {
      "frame" : [71, 105, 91],
      "toolbar" : [207, 221, 192],
      "ntp_text" : [20, 40, 0],
      "ntp_link" : [36, 70, 0],
      "ntp_section" : [207, 221, 192],
      "button_background" : [255, 255, 255]
    },
    "tints" : {
      "buttons" : [0.33, 0.5, 0.47]
    },
    "properties" : {
      "ntp_background_alignment" : "bottom"
    }
  }
}

更多信息: https ://code.google.com/p/chromium/wiki/ThemeCreationGuide

顺便说一句:当有 3-4 种颜色,没有样式时,你为什么要这个?您可以使用颜色选择器获取颜色。

于 2014-10-08T15:28:25.240 回答