zoukankan      html  css  js  c++  java
  • 背景颜色变成豆沙绿色~

    方法一(更换背景色最为彻底,彻底到网页上的有些图标颜色与背景色完成一致……):

    首先,下载安装chrome的stylist插件,下载地址:
    https://chrome.google.com/extensions/detail/pabfempgigicdjjlccdgnbmeggkbjdhd

    然后,打开"扩展设置",点击chrome stylist的选项,点击demo进行修改。
    把网页背景修改为豆沙绿的参数设置:
    输入框1:demo
    选项框2:regexp
    输入框3:(ftp|http|https)://\D
    输入框4:
    * {
    background: #C7EDCC !important;

    body {background-color:#C7EDCC !important;}
    div {background-color:transparent!important;}
    table {background-color:#000000 !important;}
    td {background-color:#C7EDCC !important;}
    tr {background-color:#C7EDCC !important;}
    th {background-color:#C7EDCC !important;}


    a:link {color:#000000!important;} /* 未访问的链接 */
    a:visited {color:#000000!important;} /* 已访问的链接 */
    a:hover {color:#000000!important;background:C7EDCC!important;} /* 当有鼠标悬停在链接上 */
    a:active {color:#000000!important;background:C7EDCC!important;} /* 被选择的链接 */

    }

    方法二(没有方法一来得彻底)

    修改文件:C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Chrome\User Data\Default\User StyleSheets的内容,增加以下内容:html, body {background-color: #C7EDCC!important;} 保存即可。

    更换pdf的背景色:

    先打开一个pdf文件——》点击菜单中的编辑——》选择最下面的‘首选项’——》进入首选项页面后,在左边的一列中选择‘辅助工具’点击它——》在右边的‘文档颜色选项中’选中‘替换文档颜色’(同时“使用windows颜色方案”和“使用高对比度颜色”两个都不选),——》选中‘自定义颜色’,同时点击页面背景右边的那个小框框,——》在弹出的界面中点击‘其他颜色’——》将‘色调’设为85、将‘饱和度’设为123、将亮度设为205——》点击添加到自定义颜色——》点击‘确定’——》点击‘确定’。

  • 相关阅读:
    WebContent的子目录里面的jsp文件无法将数据传递给Servlet
    MVC 与 三层架构
    使用命令行操作MySQL 及 语法
    JDBC
    字符典
    servlet 生命周期
    6 shell内置命令
    5shell中的数组
    4shell中的特殊变量
    3shell命令替换
  • 原文地址:https://www.cnblogs.com/sunada2005/p/2993857.html
Copyright © 2011-2022 走看看